| 
 Posted by macca on 09/21/07 02:05 
The $_GET superglobal contains all the 'variables' passed to the page 
in the URL after a '?' 
 
for example : www.domain.com?var1=foo&var2=bar 
 
would have two GET variables: 
 
var1 = foo 
 
var2 = bar 
 
The script then opens the file "out.txt" and writes each variable to 
the file like so: 
 
var1=foo 
var2=bar 
 
It then redirects the browser to the URL: http://www.friendster.com/index.cfm?fuseaction=user 
 
 
Regards, 
 
Paul
 
  
Navigation:
[Reply to this message] 
 |