when trying to insert to a table info for a picture with a html link to another site on it i get an error message:
counter INSERT error: 1064, You have an error in your SQL syntax near 'href="" target="_blank"><img src="/uploa' at line 1
the mysql code is below
can someone tell me how i can get the image source and link sent to my table please?
Thanks in advance
counter INSERT error: 1064, You have an error in your SQL syntax near 'href="" target="_blank"><img src="/uploa' at line 1
the mysql code is below
Code:
$damn = '"<a href="[URL unfurl="true"]www.mysite.com"[/URL] target="_blnk"><img src="/uploads/mho.jpg" alt="We're here" /></a>"';
$c_insert = "INSERT INTO `timmy_config` VALUES ('pic4', $damn, 0)" or die('counter INSERT error: '.mysql_errno().', '.mysql_error());;
can someone tell me how i can get the image source and link sent to my table please?
Thanks in advance