Click here to Skip to main content
15,904,297 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
Hi,
I want to validate my xml file and have to insert into sql server table whether it is valid or not and the reason if it is invalid.
I have user schemaValidate() to validate the file and libxml_get_errors(); to get the errors if it is not valid.
for example if i get errors message as follows

Error 1871 is Element 'from': This element is not expected. Expected is ( to ). on line 4

I need to insert above in reason field in my table but getting syntax error as it contains brackets (). How to solve this?
Posted
Comments
ZurdoDev 22-Mar-13 7:56am    
Use a stored procedure and parameters and then you should not get a syntax error. However, you haven't posted any relevant code so I don't think anyone can help you beyond that.
Prasad Khandekar 22-Mar-13 11:39am    
Hello Member9762654,

You don't essentially have to go down Stored proc way. PHP does supports bind parameters. Please have a look at this reference material for more details and an example (http://php.net/manual/en/mysqli-stmt.bind-param.php).

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900