Hello,
I'm using urls like http://mysite.com/index.php?page=01
or http://mysite.com/index.php?page=links&&d2143=2387
furthermore, I'm using .inc on my pages to save time,
example
<?
$title="My Page";
$keywords="page, index";
include ("header.inc");
Contents goes here
include ("footer.php");
?>
But Goggle doesn't seem to be indexing my pages, why is it?
Are there other ways of how Google will index your page using php?
Is there a php script that generates an html file like
I saw urls like this
http://www.techtv.com/animeunleashed/jump/0,24331,3417535,00.html
I do know that url is generated using cgi script, can php do the same?
I need some samples!
Thanks