|
I may have gotten this to work. I've set a variable as
$_GET[msg]="something that outputs on another page";
header("Location:index.php");
Then in index.php I have
if(isset($_GET[msg])) {
echo $_GET[msg];
}
Not sure if it's correct but it works in my limited scope.
|