Hi,
I am using the following for sending data
session_start();
$_SESSION['sendm'] = $Destination;
and on the following page
session_start();
if (isset($_SESSION['sendm'])) {
$Destination = $_SESSION['sendm'];
}
else {
echo "no address";
}
the variable is always empty? i'm using php version 4.4.3 + register globals is turned off?
any ideas?