View Single Post
  #1  
Old 09-18-2006, 12:08 PM
raydex raydex is offline
OSP Starters
 
Join Date: Aug 2006
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
raydex is on a distinguished road
Default will all the content still be indexed by search....,

hi all,
I'm redesigning my site and planning on having 1 page index.php which then feeds the content in depending on the page the user wants to view so for example I might have an about link which would actually be something like:

PHP Code:
<a href=".$_SERVER['PHP_SELF']."?page=about">
And then either a lookup in a reference table in the db or simply doing:
PHP Code:
if(!empty($_REQUEST['page'])){ $page = mysql_real_escape_string(trim($_REQUEST['page']));}
include("$page");

to get the content.

Now my question is, will all the content still be indexed by search engines and will this have any impact on that side of things... Search engine placement and all??? -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote
  Webmaster Forums - View Single Post - will all the content still be indexed by search....,
View Single Post
  #1  
Old 09-18-2006, 12:08 PM
raydex raydex is offline
OSP Starters
 
Join Date: Aug 2006
Posts: 12
Thanks: 0
Thanked 0 Times in 0 Posts
Rep Power: 0
raydex is on a distinguished road
Default will all the content still be indexed by search....,

hi all,
I'm redesigning my site and planning on having 1 page index.php which then feeds the content in depending on the page the user wants to view so for example I might have an about link which would actually be something like:

PHP Code:
<a href=".$_SERVER['PHP_SELF']."?page=about">
And then either a lookup in a reference table in the db or simply doing:
PHP Code:
if(!empty($_REQUEST['page'])){ $page = mysql_real_escape_string(trim($_REQUEST['page']));}
include("$page");

to get the content.

Now my question is, will all the content still be indexed by search engines and will this have any impact on that side of things... Search engine placement and all??? -- This message may have been cut off and the rest will only be shown to members. To become a member, click here --
Reply With Quote