Forum Moderators: open
$sql_4 = "SHOW WARNINGS;";
$query_4 = mysql_query($sql_4);
if(($query_4)=== FALSE)
{
die('warnings failed: ' . mysql_error());
}
Thanks,
Steven.
Ive tried this from phpmyadmin. And I only get this syntax error for this query. The query that uploads the data works sort of. It uploads 9443 lines of data then skips 100. and says there is 9543 warnings.
P.S Thanks for the speedy reply.
$sql_4 = "SHOW WARNINGS"; #it should look like this
Thanks,
Steven.