y does this file not work???
i have other queries that work, but i cant get the INSERT INTO to work 🙁
Any help?
Thanks
My error log has this error:
[Wed Nov 2 08:25:22 2005] [error] [client 62.254.0.55] File does not exist: /home/the5ncom/public_html/404.shtml
[Wed Nov 2 08:25:22 2005] [error] [client 62.254.0.55] File does not exist: /home/the5ncom/public_html/favicon.ico
The Script is:
<html>
<body>
<html>
<body>
<?php
$dbcnx = @mysql_connect("localhost", "the5ncom_fatrat2", "**********");
if (!$dbcnx) {
echo( "<p>Unable to connect to the " . "database server at this time.</p>" );
exit();
}
mysql_select_db("the5ncom_5thpdata", $dbcnx);
if (! @mysql_select_db("the5ncom_5thpdata") ) {
echo( "<p>Unable to locate the the5ncom_5thpdata " . "database at this time.</p>" );
exit();
}
mysql_query("INSERT INTO the5ncom_match (match_id, match_date, match_month, match_year, match_time, match_type, match_size, match_versus, match_timezone, match_map, match_status) VALUES (\'\', \'erg\', \'serfg\', \'sdf\', \'sdf\', \'sdf\', \'sdf\', \'sdf\', \'sdf\', \'sdf\', \'0\')");
?>
</body></html>