I have some PHP code that calls MySQL that works in Firefox and other browsers, but IE doesn't seem to handle it.
<?php include "casti/mysql_connect.php";
$result = mysql_query("SELECT * FROM ".$_POST['table']." WHERE id='".$_POST['id']."'");
$row = mysql_fetch_array( $result ); // Line 60 !
echo $row['title'];
?>
And here is what shows up in IE...
Warning:
mysql_fetch_array()
: supplied argument is not a valid MySQL result resource in /httpd/html/prohuntingcz/www/cms.php on line 60
Thanks for any help.