Insert xml document to mysql in php
I want to in开发者_如何学JAVAsert a xml file as a string as a entry into mysql. However, because of the presence of special characters, I am not able to do.
Is there any function in PHP that converts the xml into a format compatible with mysql query.
Thanks
mysql_real_escape_string();
精彩评论