Jump to content

Dynamic title tags and Google Index


Quentinb

Recommended Posts

Hi All.

 

I added dynamic title tags to my website at: http://www.farmstockforsale.co.za/

 

Specifically pages like these:

http://www.farmstockforsale.co.za/fulldetails-Huge_Plough_Groot_Ploeg_For_Sale_Te_Koop-23.html

http://www.farmstockforsale.co.za/fulldetails-Mix_Breed_of_Chickens_For_Sale-12.html

http://www.farmstockforsale.co.za/fulldetails-Old_Farm_Cheap_Tank_Tanker_Truck_For_Sale-31.html

 

You will see that the landing page(fulldetails) is the same for each, but the title for each is not.

 

Google finally started indexing these pages and now says that I have duplicate tags?

This is part of the code:

session_start();	
include("db/configure.php");	
include("db/database.php");	
include("db/constants.php");	
include("functions.php");		
$url = $_SERVER["REQUEST_URI"];	
$pos = strpos($url, "-");	
if($pos !== false)	
{		
   $title = substr($url, strpos($url, "-")+1);		
   $title = substr($title, 0, strpos($title, "-"));		
   $title = str_replace("_", " ", $title);	
}

 

My title tag:

<title><?php echo $title; ?></title>

 

At this stage still playing around and will clean my code later. Just need to know why Google is reading all pages with the same title?

Link to comment
Share on other sites

I had it as a normal static page about 2 weeks ago when Google first indexed it. Then changed it to dynamic as it is now and monitored Google Webmaster Tools everyday until last night when I saw the new crawl finding the new dynamic page, but complaining about the duplicate title tags.

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.