Okay, let's say I want to send a user to a certain webpage... usually I would use...
include("website.php");
but, if i want to send a user to a website along with a variable like...
$temp = "website.php?var=".$var;
include($temp);
...this doesn't work.
any suggestions??
THANKS!!

