Archive for the ‘Web Development’ Category
I found this very cool .htaccess file generator on line: http://cooletips.de/htaccess/ Share and Enjoy:
If you’re a PHP-MySQL developer, then you know & appreciate the freedom that these 2 open source applications have given us. What started out as a hobby many years ago, turned into one of the most widely used scripting languages on the internet. Coupled with MySQL you have a very powerful set of tools to [...]
PHP 5.3 and PHP6 will discontinue the use of magic_quotes for security reasons, and this means that your website may, or already have, break if you still rely on magic_quotes_gpc. Below is some code that will give you the same functionality as magic_quotes_gpc: < ?php function clear_magic_quotes() { if (get_magic_quotes_gpc()) { /* All these global [...]
I was working on a new PHP script when I needed to remove some characters from a random string. Generall I would use ereg, or even eregi (if the string has both upper and lower case. But since the string had some non-alphabetical characters, I had to check on the syntac in the PHP manual [...]
I just found a cool website, that will create an MD4, MD5 & SHA-1 hash for you, from any given string. This is ideal if you quickly need to created an encrypted password, or want to change a password on a system that uses MD5 or something similar. The site is here You can also [...]
Recent Comments