0
votes
2answers
66 views

semi-colons in PHP form submissions

Two related questions that should be easy, though my searching has come up empty. 1) I have a from in PHP. If a field has a semi-colon in it, and I do a dump of $_POST in the action page, the field ...
1
vote
1answer
217 views

Parsing SQL containing semicolon (in PHP)

I coded a sql parser that load data from a mysql dump, the problem is that some sql statements contain semicolon themselves so my parser take it as EOL as I use $sqlRows = explode(';', $sqlFile); ...
2
votes
2answers
643 views

How to execute mysql code with semicolon in php?

The code is INSERT INTO `semicolon` VALUES ('1', 'a:1:{s:4:\"size\"';\s:2:\"24\";\}'); As you might see in double single quotes there is ; - semicolon and it splits the code because its the ...