folks,
how i can get the relative path like???:
www.mydomain.com/produts/view.php?id=4&alt=5
i need the code to insert the pageviews into the table with the completed path.
Hi,
I am not sure what you are looking for.
The extention on the url the ?.... part is merely a set of variables which are parsed to the next page, to be used in the next page. You can then acces them by extracting them with:
$var = $_GET['var'];
J.