PHP code and SEO

PHP programming forum. Ask questions or help people concerning PHP code. Don't understand a function? Need help implementing a class? Don't understand a class? Here is where to ask. Remember to do your homework!

Moderator: General Moderators

Post Reply
User avatar
aceconcepts
DevNet Resident
Posts: 1424
Joined: Mon Feb 06, 2006 11:26 am
Location: London

PHP code and SEO

Post by aceconcepts »

Hi,

I didn't really know where to post this one!

My question is: when you use php and sql to populate, for example a list of content (like a site index) using $variables and a loop, will search engines find the populated data or just the $variable name?

Thanks.
User avatar
volka
DevNet Evangelist
Posts: 8391
Joined: Tue May 07, 2002 9:48 am
Location: Berlin, ger

Post by volka »

Search engines more or less act like browsers. Does your browser "see" the data or $variable?
User avatar
itsmani1
Forum Regular
Posts: 791
Joined: Mon Sep 29, 2003 2:26 am
Location: Islamabad Pakistan
Contact:

Post by itsmani1 »

in other word no,

they won't see.
timvw
DevNet Master
Posts: 4897
Joined: Mon Jan 19, 2004 11:11 pm
Location: Leuven, Belgium

Post by timvw »

It all depends on what you send to the engines:
- If you send them $variable they will see that...
- If you send them some html, they will see that
Post Reply