Monday, December 14th, 2009
function example($args="") {
$variable1 = $args['variable1']? $args['variable1'] : 'default';
}$args = array(
'variable1' => 'value',
'variable2' => 2,
'variable3' => $etc
READ MORE»
Wednesday, December 9th, 2009
RewriteEngine On
RewriteBase /
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /yourcode.php [L]
$uri = $_SERVER['REQUEST_URI'];
$vars = explode('/', $uri);