View Single Post
Old 06-26-2004, 08:49 AM   #3 (permalink)
hatchet
v7n Mentor
 
hatchet's Avatar
 
Join Date: 10-11-03
Posts: 1,137
iTrader: 0 / 0%
Latest Blog:
None

hatchet is just really nicehatchet is just really nicehatchet is just really nicehatchet is just really nicehatchet is just really nicehatchet is just really nicehatchet is just really nicehatchet is just really nicehatchet is just really nicehatchet is just really nicehatchet is just really nice
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];
}
??
hatchet is offline   Reply With Quote