Hi I have added the following codes so I can add the variable 'counter.' However, what I also see is the the addition of
?PHPSESSID=fb04ea32e0e09441585d2d0d01d9fb39 to most of my hyperlinks. I was wondering if I can elimiate this part of the URL. I don't want Googlebots to think I have dynamic pages.
Please help.
<?
session_start();
$counter++;
session_register("counter");
rest of the program
?>