pioneerx01 Posted January 2, 2012 Share Posted January 2, 2012 How would I pass variables from one page to another without using forms or $_GET features. Let say I have page (1.php) where If define $secret_phrase = "open sesame";. On that page (1.php) I have multiple html links to multiple pages (2.php, 3.php, ...) if you click on the link to 2.php page I would like to pass the $secret_phrase as well without having it encoded into a link or using forms. Is there a way to do it? Thanks Link to comment https://forums.phpfreaks.com/topic/254188-how-to-pass-variables-from-page-to-page/ Share on other sites More sharing options...
AyKay47 Posted January 2, 2012 Share Posted January 2, 2012 Why wouldn't you want to pass the variables via query string? Alternatively, you can use sessions Link to comment https://forums.phpfreaks.com/topic/254188-how-to-pass-variables-from-page-to-page/#findComment-1303243 Share on other sites More sharing options...
pioneerx01 Posted January 2, 2012 Author Share Posted January 2, 2012 I do not what to use query string because I will have to encode each link manually and users can change the defined values themselves. Link to comment https://forums.phpfreaks.com/topic/254188-how-to-pass-variables-from-page-to-page/#findComment-1303245 Share on other sites More sharing options...
AyKay47 Posted January 2, 2012 Share Posted January 2, 2012 Sessions Link to comment https://forums.phpfreaks.com/topic/254188-how-to-pass-variables-from-page-to-page/#findComment-1303246 Share on other sites More sharing options...
SergeiSS Posted January 2, 2012 Share Posted January 2, 2012 I do not what to use query string because I will have to encode each link manually and users can change the defined values themselves. Maybe I wrong about what you are going to do... But you can use JavaScript in order to change your links when user enter any info. Just create one or some function(s) and put call to it into 'onchange' of that element where your user enter his info. Link to comment https://forums.phpfreaks.com/topic/254188-how-to-pass-variables-from-page-to-page/#findComment-1303262 Share on other sites More sharing options...
Zane Posted January 2, 2012 Share Posted January 2, 2012 Sessions Link to comment https://forums.phpfreaks.com/topic/254188-how-to-pass-variables-from-page-to-page/#findComment-1303302 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.