Inhaltsverzeichnis

PHP

Compiler & Obfuscators

Alternative PHP Cache (APC)

OOHForms

FTP mit PHP

Suhosin

Einführung Objektorientierung (Oo) PHp5: http://www.peterkropff.de/site/php/konstruktor.htm

'auto_increment' Wert ausgeben

PHP-Code:

  $query = " 
  SHOW 
    TABLE STATUS 
  FROM 
    `database` 
  LIKE 
    'table' 
";  

force apache to handle html as php

nano /etc/apache2/mods-enabled/php5.conf

add the lines:

<FilesMatch ".+\.html$">
    SetHandler application/x-httpd-php
</FilesMatch>