Show random ads at phpld
April 21st, 2008 — adminIf you’re looking for a simple static solution (an not an entire ad manager) use this
add in your init.php after the $tpl = get_tpl(… line Read the rest of this entry »
If you’re looking for a simple static solution (an not an entire ad manager) use this
add in your init.php after the $tpl = get_tpl(… line Read the rest of this entry »
ucfirst — Make a string’s first character uppercase
example:
$coo= ‘clay desiccant!’;
$coo= ucfirst($desiccant); // Clay desiccant!
$bar = ‘CLAY DESICCANT!’;
$bar = ucfirst($bar); // CLAY DESICCANT!
$bar = ucfirst(strtolower($bar)); // Clay desiccant!