1 Say if you have the url of www.test.com/test.php?id=1 is it possible to take the id=1 and put it in a variable.
2 How do u get it so that you can not refresh a page
You can access the query string with $SERVER['QUERY_STRING'], or use the $GET array, i.e. $_GET['id']
I think you can use meta-tags for that, but if so, then it isnt entirely reliable since meta tag support can be turned off. There might be some other way, but I never really looked into this sort of thing.
ok thank you I have fixed the $_GET THing