Im ahving a problem inserting this into my database, why? the error occours from the <> tags etc and the collumn it's trying to be inserted in is "longtext" fields, why wont it work? :/ INSERT INTO `qdbs_quotes` (`id`, `quote`, `rating`) VALUES (6, '<b>Assassin's Creed</b><br />\r\nAltair: ""You cannot run forever!""', 0);
I think you need to escape the special characters in the string. I'm not sure what function to use but mysql_real_escape_string() might be it.
As Cash Nebula said, use mysql_real_escape_string() or at least addslashes(). You problem comes from Assassin's. It should be Assassin\'s ...