|
I had a similar question..
I've always done something like
$msg="something was added";
header("Location:index.php?msg=$msg");
Then as you know - it does the + thing.
If I were to use $_GET[msg] how would I do that?
$_POST[msg]="something was added";
header("location:index.php");
then in index.php do something like
if(isset($_POST[msg])) {
echo $_POST[msg];
}
??
|