1) "CSS ZEN" This is where the markup remains unchanged, but you totally change the design just by using CSS and images. Demonstrated very well on http://www.csszengarden.com/
Tag Archives: PHP
PHP Predefined Constants
The constants below are defined by this extension, and will only be available when the extension has either been compiled into PHP or dynamically loaded at runtime. DIRECTORY_SEPARATOR (string) PATH_SEPARATOR (string) <?php require_once (‘public’ . DIRECTORY_SEPARATOR . ‘index.php’); ?>
How to sanitize your php input
Never trust user input, it may be malicious, always check your php input. Check all global arrays like $_GET, $_POST, $_REQUEST, $_COOKIE, allow only known variables and make sure that they contain the right type of data. What does this mean ? It means that if you have a $_GET[‘id’] variable in your script which …
array_slice
array_slice — Extract a slice of the array http://uk.php.net/manual/en/function.array-slice.php
increase php upload limit
.htaccess
Introduction to PHP PDO
Introduction to PHP PDO (PHP Data Objects) by Kevin Waterson Contents What is PDO What Databases does PDO support Where do I begin? Connect to a Database Connect to PgSQL Connect to SQLite Connect to MySQL Connect to Firebird Connect to Informix Connect to Oracle Connect to ODBC Connect to DBLIB Connect to IBM There …