Php basic - sessions help

A

Anonymous

Guest
Sessions work on a per frame basis as far as I know (I've done it like that).

To get variables from the URL, use the $_GET supervariable.

e.g $string = $_GET['string'];
 
You could put in your site by entering your URL in as

http://mywebsite.com/?id=http://othersite.com/?sting=test

This should be what the URL will look like.
 
Back
Top