Re: Calling page and condition check?

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



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





[Index of Archives]     [PHP Home]     [Apache Users]     [PHP on Windows]     [Kernel Newbies]     [PHP Install]     [PHP Classes]     [Pear]     [Postgresql]     [Postgresql PHP]     [PHP on Windows]     [PHP Database Programming]     [PHP SOAP]

  Powered by Linux