I have a problem inserting a string into a MySQL table. My code is:
mysql_query( "INSERT INTO jos_content (
title, alias, introtext, metakey, state, created_by, metadesc)
VALUES ('$izv','$izv','$forprint','$mk',1,62,'$izv')" );
Everything works as expected when the variable $forprint isn't in the query, but when I add it the query my database doesn't update. $forprint is a string longer than 4000 chars.
EDIT:
with mysql_real_escape_string input was passed to db, but with some missing.
The part which is missing is:
<p><br></p><table style="text-align: left;" mce_style="text-align: left;"
class="mceItemTable" border="0" width="100%"><tbody><tr><td colspan="2"
rowspan="1"><h1 style="text-align: center;">HP</h1></br></br><h1 style="text-
align: center;" mce_style="text-align: center;"><br><p><br></p><p></h1></p><p><a
href="#" mce_href="#" onclick="jwplayer().load('/templates/BV/list
/HP.xml')"><p style="text-align: center;" mce_style="text-align:
center;">SDS</p></a><br mce_bogus="1"></p><br mce_bogus="1"></td></tr>
so in my exit.txt which is generated from $forprint all data is there, but in DB this part, and closing part of table is missing.
EDIT2: PDO did the job, thank you for advices.
echo mysql_error();– Michael Berkowski Nov 14 '12 at 22:12Textdatatype for introtext – rs. Nov 14 '12 at 22:13$forprintmay be creating an illegal SQL statement. You should use parameter binding. – Ted Hopp Nov 14 '12 at 22:33