Day: May 17, 2008
how to deal with a sentence as a page title?
<?php $hotel=” How to study PHP “; $hotel= trim($hotel); $array=explode(” “, $hotel); $hotel=implode(“-“, $array); echo ($hotel); ?>
Study PHP Skills, Share PHP Code
<?php $hotel=” How to study PHP “; $hotel= trim($hotel); $array=explode(” “, $hotel); $hotel=implode(“-“, $array); echo ($hotel); ?>