Can variables not pass from one url to the other using a Header: Location statement?
Example:
if ((!$id) || (!$password)) {
header("Location: [url]http://www.somedomain.com/error.php[/url]");
exit;
} else {
header("Location: [url]http://www.somedomain.com/admin2.php?id=[/url]$id&password=$password");
}
Seems when admin2.php is called with the variables in the url, it's either not reading them or doing something funky, since my modify form is all blank at the moment.
Any insight?