Jump to content

Dynamic TitleI am posting this into the Newbie forum cause this seems nebieish t


Travist6983

Recommended Posts

I am posting this into the Newbie forum cause this seems nebieish to me...

 

Ok i have a few files that make up a set of pages

 

Topbar.php

index.php

info_birmingham.php ( i want the title to match the info page i have a few cities )

footer.php

 

OK so obviously the <title> is in top bar and i am trying to display the city name in the title which would be gotten from the info_city page

 

so in topbar i have...

<title><?php echo ("$city"); ?> - <?php echo COMPANY; ?></title>

 

and then in the info_city page i have at the top of the page

 

<?php
$city = "Birmingham";
?>

 

So i guess my question is why does the title not display the city name?

 

SOMEONE please help i have been pulling my hair out on this

you can see form the URL string that index.php controls all of the pages and the info page has the data for each city

http://www.skbk.com/OaklandCounty/index.php?section=Birmingham

 

Thanks to anyone that might be able to shed some insight on this for me

 

T

Link to comment
Share on other sites

Most likely because you try and echo $city before it has been defined.  Look at the order of your includes.  I think it would be easier in your setup and less to keep track of if you do this:

 

<title><?php echo ucfirst($_GET['section']); ?> - <?php echo COMPANY; ?></title>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.