how to deal with a sentence as a page title?
May 17th, 2008 — admin<?php
$hotel=” How to study PHP “;
$hotel= trim($hotel);
$array=explode(” “, $hotel);
$hotel=implode(”-”, $array);
echo ($hotel);
?>
<?php
$hotel=” How to study PHP “;
$hotel= trim($hotel);
$array=explode(” “, $hotel);
$hotel=implode(”-”, $array);
echo ($hotel);
?>