Tag Archive for 'security'

Writing a Cross-Domain Proxy in PHP

 

Today I encountered a problem that many developers will likely face while building a web application with Ajax, so I wanted to share my experience with it.
The Problem:
You create a web site with the goal of consuming content from the web.  This may be in the form of a geocoding service, or perhaps a lightbox [...]

Extending HTML_QuickForm_Rule

 

HTML_QuickForm is a very popular PEAR library that eases form design for the web programmer.  It consists of three separate but equally important parts – form components, form renderers, and form validators.  The last of these three is the focus of this week’s tutorial.
Web programmers always have to be considerate of the security risks involved [...]