Top Articles

Stay In Touch


Affiliate Marketing Forum

FAQ FAQ Search Search Memberlist Memberlist Usergroups Usergroups
Register Register Profile Profile Log in to check your private messages Private Messages Log in Log in

Dynamic title and meta-tags

Affiliate Marketing Forum Index » Search Engine Optimization
Post new topic   Reply to topic
View previous topic :: View next topic  
Author Message
Sandro



Joined:
12 Feb 2004

Posts:
15

Location:
Italy

Post Posted: Thu Oct 21, 2004 5:51 pm
      Post subject: Dynamic title and meta-tags

Reply with quote

Hello,
I need to know if Search Engines view dynamic title and meta-tags as static on the actual page and index the page based on that title and meta-tags. I mean in a PHP page including the variable $ in title, desctiption e keywords. I.E. if in "page A" select "Canada" as variable $country, in a dynamic "page B" called from A, including in title "$country hotels.." what do SE view as title on the page B and how index the page? ("Canada hotels.." if select "Canada" in page A , "Italy hotels" if select "Italy" etc....)?
Thanks,
Sandro
Back to top View user's profile Send private message
robertb



Joined:
09 Aug 2003

Posts:
1837

Location:
Columbus, OH

Post Posted: Thu Oct 21, 2004 6:46 pm
      Post subject:

Reply with quote

To my understanding of PHP, the SE's can't view the executable code, so they won't know that there are variables in the page.

The executable code is done by the server your page resides on, before Google can view it. Google will only see the results of the code's execution.

Does that answer your question?
_________________
Robert
Instant Site Comments - Allow Visitors to Comment On Your Content!
EbookNiches.com - 4 PLR Ebook Packages Each Month
Learn About DropShipping
Back to top View user's profile Send private message Visit poster's website
Sandro



Joined:
12 Feb 2004

Posts:
15

Location:
Italy

Post Posted: Thu Oct 21, 2004 9:28 pm
      Post subject:

Reply with quote

Quote:
...Google will only see the results of the code's execution


Thank you Robert. If I have understood well what you say, my dynamic page "B.php" will be indexed as "B.php?country=Canada" with title "Canada hotels...", as "B.php?country=Italy" with title "Italy hotels...", and so on for any value assigned to variable $country by selecting "country" in page "A.php".
Is that what you mean? Am I wrong?

Thanks,
Sandro
Back to top View user's profile Send private message
robertb



Joined:
09 Aug 2003

Posts:
1837

Location:
Columbus, OH

Post Posted: Thu Oct 21, 2004 9:55 pm
      Post subject:

Reply with quote

That's correct.

Now whether or not Google will frown apon this is another issue because of the potential for mass generated content. I've seen other sites create 1000's of pages in the google listings, by simply changing the city and state name on a page. If not already, definitely over time Google's algorithms may pick this up as duplicate content because so much of the pages content is the same.

I'm not saying you're doing this, but it's just another issue to keep in mind.
_________________
Robert
Instant Site Comments - Allow Visitors to Comment On Your Content!
EbookNiches.com - 4 PLR Ebook Packages Each Month
Learn About DropShipping
Back to top View user's profile Send private message Visit poster's website
Sandro



Joined:
12 Feb 2004

Posts:
15

Location:
Italy

Post Posted: Thu Oct 21, 2004 11:16 pm
      Post subject:

Reply with quote

Quote:
Google's algorithms may pick this up as duplicate content..


I am going to build pages dynamically generated but with different content each other, so I hope to escape the SE punishments...

I have another question for you related to SEO: by visiting your site I have seen you always make use of dashes to separate the words in the name assigned to your files; how do SE view "cheap-computer-tool-kits.htm" ? I mean is better separate the words with dash, underscore or not separate the words (i.e. cheapcomputertoolkits.htm ) ? How much is important the name of file for SE indexing?

thanks again,
Sandro
Back to top View user's profile Send private message
robertb



Joined:
09 Aug 2003

Posts:
1837

Location:
Columbus, OH

Post Posted: Fri Oct 22, 2004 2:23 am
      Post subject:

Reply with quote

From what I've read, Google can't determine any of the words in

cheapcomputertoolkits.htm

when looking for a keyword in the URL, but it can in

cheap-computer-tool-kits.htm

because all of the words are separated.

I've heard that Yahoo can pick out the first word, so it could recognize the phrase "cheap" in cheapcomputertoolkits.htm but nothing more.

In regards to how much weight Google gives to this, my guess is not a lot, but it couldn't hurt.
_________________
Robert
Instant Site Comments - Allow Visitors to Comment On Your Content!
EbookNiches.com - 4 PLR Ebook Packages Each Month
Learn About DropShipping
Back to top View user's profile Send private message Visit poster's website
jjdubb



Joined:
21 Oct 2004

Posts:
9


Post Posted: Fri Oct 22, 2004 5:29 am
      Post subject:

Reply with quote

If I understand what you are asking, you want to know if google will see what is intended to be on the page or not. Google will see what the user sees. All of the php code runs server side before the page is delivered to the end user. That means that the php code executes and puts the content on the page based on the variables and the user (google spider or someone visiting the page) sees whatever the end product is.

Is that what your were asking?
_________________
Free reciprocal
link exchange - add your site today!
Back to top View user's profile Send private message
Sandro



Joined:
12 Feb 2004

Posts:
15

Location:
Italy

Post Posted: Fri Oct 22, 2004 8:11 am
      Post subject:

Reply with quote

Quote:
...user (google spider or someone visiting the page) sees whatever the end product is.
Is that what your were asking?


Yes, I knew that for the 'body content' of the page, my doubt was about 'title and meta-tags'.
So, in my example, just one file (B.php) , do you mean will be indexed as pages as values assigned to variable $country, every page with their own title and meta-tags?
Thanks,
Sandro
Back to top View user's profile Send private message
Charlie



Joined:
22 Aug 2003

Posts:
3305

Location:
UK

Post Posted: Fri Oct 22, 2004 12:23 pm
      Post subject:

Reply with quote

Sandro wrote:
Yes, I knew that for the 'body content' of the page, my doubt was about 'title and meta-tags'.
So, in my example, just one file (B.php) , do you mean will be indexed as pages as values assigned to variable $country, every page with their own title and meta-tags?

There are two ways to create a dynamic page... server side or client side...

1) Client side (such as with Javascript or some kind of syndicated content)

In this case, the script is read after the page is sent to the client browser. Human visitors (provided JS is enabled) will see a different page from the one a SE spider will see. SE spiders do not run JS, though this may change.

What do you are doing to create the page will be viewable in the page source.

2) Server side (such as PHP, CGI)

The page is created by running a script on your server, before it is sent to the client browser or SE spider. The HTML (and for that matter any JS) is written into the page.

What do you are doing to create the page will not be viewable in the page source.

Note: the serach engines will view "B.php?country=Canada" and "B.php?country=Italy" as unique pages.

Hope this helps,
Charlie.
_________________
"Before I speak, I have something important to say."
- Groucho Marx
Back to top View user's profile Send private message
robertb



Joined:
09 Aug 2003

Posts:
1837

Location:
Columbus, OH

Post Posted: Fri Oct 22, 2004 12:54 pm
      Post subject:

Reply with quote

Sandro wrote:

Yes, I knew that for the 'body content' of the page, my doubt was about 'title and meta-tags'.


Yes, everything on the entire page are read the same, content, title, meta-tags, etc.
_________________
Robert
Instant Site Comments - Allow Visitors to Comment On Your Content!
EbookNiches.com - 4 PLR Ebook Packages Each Month
Learn About DropShipping
Back to top View user's profile Send private message Visit poster's website
View previous topic :: View next topic  
Display posts from previous:   
Post new topic   Reply to topic
Affiliate Marketing Forum Index » Search Engine Optimization
Page 1 of 1 All times are GMT

 

Jump to:  
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum




Newsletter Sign-up

Sign-up Now!

How to make $1000 a month from scratch

Sign-up for our newsletter and receive our 77 page eBook "How to make $1000 a month from scratch".

Best of all it's FREE!

Your Host

Allan Gardyne

Learn from an affiliate veteran.

Your host, Allan Gardyne, has been earning a good living from affiliate programs since 1998.

Want a BETTER article writer? We will write good articles just for you.

Content Kingdom