This little script will block unwanted users to your site by IP. This is the lite version and requires no database. Quick and simple to use.
Just updated! You can now ALLOW users to your webpage by IP.
Updated 11/26/04: You can now block a class of ip. Ex: block all coming from 222.xxx.xxx.xx or allow!
iScramble is a PHP script that allows you to protect sections of your HTML code from prying eyes. It scrambles the text into a form that is not human readable, and generates some JavaScript code to descramble it.
It is particularly useful for hiding email addresses from email address harvesting robots.
Using iScramble is simply a matter of including the php code, calling the iScramble() function passing in text that you want to scramble, then echo the returned string.
kses is an HTML filter. It removes all unwanted HTML elements and HTML attributes, no matter how malformed HTML input it gets. This is helpful for avoiding XSS (Cross-site Scripting) security holes, among other things.
Make PHP generated web content availabe only to you! I derived this function from some PHP code that I used on the administrative portion of my database driven sites. isLogged() returns true if the cookies named UserName and PassWord are the same as $UserName and $PassWord, the first 2 paramters of the function. If not, it displays the content of $LogInPage, the 3rd paramenter. The main thought behind this was to display the same login for all my admin pages, without have to repeat the same HTML code. Another purpose for this code was to keep MySQL queries, and other back-end code from being executed without permission.
It is a PHP class that helps you to parse and output checksums from the files generated by FastSum checksum utility. As well as the regular checksum files created by other similar utilities this class extends limits and can also handle extra information that may be stored in these files. See FastSum documentation to add additional information into checksum files.
This php script will ensure safe login for users. This script uses smart encryption for user details and uses cookies to keep track and ensure authorized users only. The complex encryption which is used on the mySQL has been tested and so far I have NOT had any unauthorized access to restricted areas.
Make PHP generated web content available only to you! I derived this function from some PHP code that I used on the administrative portion of my database driven sites. isLogged() returns true if the cookies named UserName and PassWord are not null, and successfully create a database connection when passed with the mysql_connect function. If not, it displays the content of $LogInPage.