View Single Post
  #4 (permalink)  
Old 2003-06-04, 04:05 AM
stuart's Avatar
stuart stuart is offline
Administrator
 
Join Date: Jan 2003
Location: Scotland
Posts: 472
stuart will become famous soon enoughstuart will become famous soon enough
Send a message via MSN to stuart
Default

all variables that exist in you querystring are automatically available to your script and available through the $_GET[''] super globals, so you dont need to reassign variables to them.

for example if you querystring variable is myname=stuart, you can call this by using $_GET['myname'] (which has the value stuart).

Maybe a read through some tutorials and the manuals would help as would a good book.
Reply With Quote