Like with what?
phpinfo 4.4.o file shows:
Sockets Support "enabled "
MYSQL_SOCKET /var/lib/mysql/mysql.sock
I have a script that isn't posting to the table.
$fp = fsockopen ('www.anything.com', 80, $errno, $errstr, 30);
updated 11.29.05
ran the example script at http://uk2.php.net/fsockopen:
<?php
$fp = fsockopen("www.mysite.com", 80, $errno, $errstr, 30);
if (!$fp) {
echo "$errstr ($errno)<br />\n";
} else {
$out = "GET / HTTP/1.1\r\n";
$out .= "Host: www.mysite.com\r\n";
$out .= "Connection: Close\r\n\r\n";
fwrite($fp, $out);
while (!feof($fp)) {
echo fgets($fp, 128);
}
fclose($fp);
}
?>