Mar 7

If you’re granted “AllowOverride Options” or “AllowOverride All” privileges in Apache’s httpd.conf configuration, then you’re able to override PHP configuration directives using the .htaccess file. Read More



Mar 7

Three years ago, in March 2007, the Hardened-PHP project had organized the Month of PHP Bugs. During one month more than 40 vulnerabilities in the PHP interpreter were disclosed in order to improve the overall security of PHP. Now, three years later, SektionEins GmbH will continue in the same spirit and organize the Month of PHP Security.
Read More



Feb 18

http://redotheweb.com/2008/07/08/comparing-propel-doctrine-and-sfpropelfinder/



Feb 15

Savant is a powerful but lightweight object-oriented template system for PHP.
Read More



Feb 15

The function ip2long() generates an IPv4 Internet network address from its Internet standard format (dotted string) representation. Why, because it has several advantages:
Read More



Feb 15

Swapping values in PHP:

$x = 1;
$y = 2;

Read More



Feb 15

XCache is a fast, stable PHP opcode cacher that has been tested and is now running on production servers under high load. It overcomes a lot of problems that has been with other competing opcachers such as being able to be used with new PHP versions.

Read More



Feb 11

Good (but old) article why not to use stored procedures in combination with PHP applications.
Read More



Dec 9

<?php

$x = ‘123hmmmm’;
if($x == 123)
echo ‘o-oh’;
else
echo ‘duh’;

?>



Dec 9

Sometimes you want to make your code, html, output more readable by introducing newlines.
Great, put some \r\n into it, or even worse ‘
‘ … This doesn’t make you’re code very cross-platform and doesn’t look very professional if you ask me. There is a proper way to implement newlines you know.
Read More