On 6/16/2014 11:08 AM, Joey J wrote:
<?
$calling_page=$_SERVER['SCRIPT_NAME'];
echo $calling_page;
if ($calling_page == "/index.php") {
$title = "Page home";
} elseif ($calling_page == "/contact-us.php") {
$title = "Page -- Contact";
} else {
$title = "Default";
}
echo "<title>".$title." ". $calling_page ."</title>\n";
?>
You're saying that the above code shows you a valid calling_page value
in line 2 that matches one that you are looking for in the if else
statements beginning at line 3? Is this code located in the header
section of your html page?
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php