iamthwee
Posting Expert
5,950 posts since Aug 2005
Reputation Points: 1,543
Solved Threads: 439
I guess a simple example would be...
pass.php
<a href="temp.php?var=hello">test</a>
temp.php
<?
echo $_GET['var'];
?>
Which should display the word hello, which is passed from pass.php (the first url) to the second url.
Straight from php man http://ca3.php.net/variables.external
iamthwee
Posting Expert
5,950 posts since Aug 2005
Reputation Points: 1,543
Solved Threads: 439