Eljay Posted July 6, 2007 Share Posted July 6, 2007 I would like to pass a variable to a page automatically using the header function, but it is not passing for some reason header("Location: ../message/detail.php?lval=1&msg=$msg"); lval=1 is working fine and being passed but msg=$msg is not. Thanks in advance for any help LJ Link to comment https://forums.phpfreaks.com/topic/58653-header/ Share on other sites More sharing options...
tippy_102 Posted July 6, 2007 Share Posted July 6, 2007 header has problems with &. Use &, not &, and it should work for you. header("Location: ../message/detail.php?lval=1&;msg=$msg"); Link to comment https://forums.phpfreaks.com/topic/58653-header/#findComment-290992 Share on other sites More sharing options...
Eljay Posted July 6, 2007 Author Share Posted July 6, 2007 Thanks Tippy, it worked...Just wondering if there was a way to pass those variables without them showing on the URL box on the subsequent page. ../message/detail.php?lval=1&;msg=$msg I don't want the red text to show. Use POST instead of GET perhaps? if so how? Link to comment https://forums.phpfreaks.com/topic/58653-header/#findComment-291466 Share on other sites More sharing options...
per1os Posted July 6, 2007 Share Posted July 6, 2007 www.php.net/session Session variables are the way to go. <?php session_start(); // must be at the top of the page BEFORE any output and on any other page you want to reference session variable at $_SESSION['lval'] = 1; $_SESSION['msg'] = $msg; header("Location: ../message/detail.php"); Should work. Link to comment https://forums.phpfreaks.com/topic/58653-header/#findComment-291536 Share on other sites More sharing options...
Eljay Posted July 7, 2007 Author Share Posted July 7, 2007 I am using session variables already. Trying to use form variables to pass these values as it is going into a if loop. Just don't want those values shoing in the URL field. thanks Link to comment https://forums.phpfreaks.com/topic/58653-header/#findComment-291958 Share on other sites More sharing options...
per1os Posted July 7, 2007 Share Posted July 7, 2007 You could use javascript to setup the post variables and "submit" the form which is just an auto redirect. Other than that I do not think there is any other way to do it. Link to comment https://forums.phpfreaks.com/topic/58653-header/#findComment-292020 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.