Hi Todd,
This looks like a good starting point for me.
I was going to use $_SERVER['PHP_SELF']; but I think
($_SERVER['SCRIPT_NAME']); in your example will always return just the
script info and not additionally passed information, which will save
me trouble shooting later!
Thanks!!!
On Thu, Nov 19, 2009 at 10:09 AM, tedd wrote:
> At 11:30 AM -0500 11/18/09, Jack S wrote:
>>
>> Hello All,
>>
>> Does anyone have a reference to a program that may be out there to
>> help with using a single header.php for a site, but then dynamically
>> loads different keywords , titles etc based on what page is including
>> the header file?
>>
>> Sample:
>> If home page include it knows the title and other variables would be
>> home, about us would be about etc.
>>
>> --
>> Thanks!
>> Jack
>
> Jack:
>
> I do this for my site. It's pretty simple -- please follow:
>
>
> $self = basename($_SERVER['SCRIPT_NAME']);
>
> switch($self)
> {
> case 'index.php':
> ?>
> Title of Index Page
>
>
> break;
>
> and so on.
>
> Cheers,
>
> tedd
>
> --
> ---
> http://sperling.com http://ancientstones.com http://earthstones.com
>
--
Thanks!
Jack
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php