Posts by pokemaobr • 91 points
2 posts
-
4
votes2
answers1129
viewsA: How to check for errors in an XML
According to the php.net, if you load the libxml can find out what the mistakes are. Example: <?php libxml_use_internal_errors(true); $sxe = simplexml_load_string("<?xml…
-
5
votes3
answers1402
viewsA: How can I simplify Urls for a website?
I recommend using Routers to work with URL simplification. Here is an example created by Brazilians https://github.com/Respect/Rest There is a router very easy to use.…