<snip> What have I done wrong in such a simple bit of code? ------------------------- <html><head><title></title></head> <body> <? $browser = $HTTP_USER_AGENT; $ip = $REMOTE_ADDR ; $db = mysql_connect ( "localhost" , "username" , "password" ); mysql_select_db ( "database" , $db ); $sql = "INSERT INTO table_name(ip,browser,received) VALUES('$ip','$browser',now())" ; $results = mysql_query ( $sql); ?> <h1>Howdy</h1> </body></html> -------------------------------- </snip>
I copy & pasted your code onto a test HTML page and modified the mysql commands to appropriately connect to my MySQL server. There was absolutely no problem with this code at all. What version of PHP are you using? Sincerely, Craig Vincent -- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED] To contact the list administrators, e-mail: [EMAIL PROTECTED]