This article will guide you through writing secure PHP code and covers many of the common security pitfalls one will encounter while making php applications. Covers things such as register globals, SQL injection, include files, and demonstrates how t...
This article demostrates an easy way to maintain sessions and security (or authorization) in PHP. It does NOT use the PHP built in session support. The following method will allow you to easily secure any PHP page by simply including a file at the to...
Protect your PHP Scripts using the most efficient method: HTTP Authorization, as implemented in PHP. Using this tutorial, you''ll learn how easy it is.
This tutorial explains how to safely hide away PDF files from public access using htaccess, but then having a PHP file run its own authorization to allow access to the file without the Network Password dialog box. The PDF file will be displayed in th...
Connecting to a database requires that passwords be included in the script at some point. This information may
be exposed if you do not wrap your PHP scripts. Protecting your scripts from prying eyes is called &"wrapping.&" When yo...