Show random ads at phpld
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
Study PHP Skills, Share PHP Code
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
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!