not passing my variable
Posted: Thu Jun 05, 2003 6:46 am
I have a session variable that looks like this.
When I set this variable as follows I get a response that says it can“t find the _update_confirm.php. In other words it is not reading the $user variable I have put in front of it.
Any ideas of what I am doing wrong?
Code: Select all
<?php
session_start();
header("Cache-control: private");
$_SESSION['user'] = $_REQUEST['user'];
$user=$_REQUEST['user'];
?>Code: Select all
<?php
$updateGoTo = $user."_update_confirm.php?update=true&user=".$user;
?>