I've got a raw/(binary?) image like this:
ÿØÿà�JFIF��–�–�*!!!$'$ &(goes on forever);
when i try to insert this into mysql it doesn't work, the column type is set to longblob, any ideas?
I've got a raw/(binary?) image like this:
ÿØÿà�JFIF��–�–�*!!!$'$ &(goes on forever);
when i try to insert this into mysql it doesn't work, the column type is set to longblob, any ideas?
I think you need to escape that using mysql_real_escape_string
before inserting into the database.