August 6, 2011
XML files, as we know by now, are plain text files just like the HTML files. Hence, just like HTML, XML can also be easily stored and generated by a standard web server. For example, consider the following piece of code: <?xml version=”1.0″ encoding=”ISO-8859-1″?> <note> <from>John</from> <to>Tove</to> <message>Remember me this weekend</message> </note> The above code [...]
Read the full article →
August 2, 2011
Filters in PHP are highly useful to filter and validate data coming from non reliable and insecure sources. Additionally, the PHP filter extension is designed to make data filtering easier and quicker. Almost all web applications depend on external input. Usually this comes from a user or another application (like a web service). Implementation of [...]
Read the full article →