Hi. I'm having a problem that is making me hostile.
All I'm trying to do is to write the result of
$phpgetbrowser = mysql_real_escape_string(print_r(get_browser(null, true), true));
to a mysql table. The data type in the table I'm using is varchar(800).
So I do
$sql = "insert into browsers values ('".$phpgetbrowser."')";
if (!mysql_query($sql,$con))
{
die('Error: ' . mysql_error());
}
What's making me crazy is that I copied and pasted this latter code from elsewhere in the script, where it works fine. I'm sure that the mysql connection has already been made, and that $phpgetbrowser is initialized. I get the following error
Error: You have an error in your SQL syntax; check the manual that corresponds to your MySQL server version for the right syntax to use near ''Array\n(\n [browser_name_regex] => ^mozilla/5\\.0 (.*linux x86_64.*) applewe' at line 1
Any help would make me a much happier man. Thanks.