Protect your pages with login using PHP sessions.Add a small piece of code to the pages you want to protect with login. Learn how to use PHP sessions to preserve login status using hard coded password check.
Bad written php scripts can be easily hacked by anyone if. With this tutorial, you will hopefully be writing more secure php scripts and avoid the headache.
SSL is an internet security protocol. When a web server sends out content through HTTPS, this one gets encrypted so that only the client making the request can read it.
Learn how to super protect your files without the use of mySQL. This tutorial will help you learn how to password protect your file quickly and easily in a few lines of code.
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 to protect against those kind of attacks. Anyone new to PHP, and even some more experianced people, should read this before deploying thier application.
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 top of every page. In this tutorial you will: a) Create your database structure; b) Create a login page; c) Create your security check include file; d) Secure your site.Update: I fixed a couple of bugs in the article. Thanks for the feedbackUpdate to the update: I have fixed the article text to include the code that was missing due to the previous update.