gple Posted March 1, 2009 Share Posted March 1, 2009 I have three pages, the first page I put in all my data, the second page is basically a confirmation page saying to confirm what I just did, but then I want to pass the data to a third page without actually using the post method. Link to comment https://forums.phpfreaks.com/topic/147394-confirmation-window/ Share on other sites More sharing options...
DarkSuperHero Posted March 1, 2009 Share Posted March 1, 2009 use a cookie? first page creates cookies, if confirmation is true keep cookie, if not then remove it, third page reads cookie.. ? Link to comment https://forums.phpfreaks.com/topic/147394-confirmation-window/#findComment-773650 Share on other sites More sharing options...
ram4nd Posted March 1, 2009 Share Posted March 1, 2009 or you could pass on data with POST method, tere are hidden fields you know. Link to comment https://forums.phpfreaks.com/topic/147394-confirmation-window/#findComment-773666 Share on other sites More sharing options...
WolfRage Posted March 3, 2009 Share Posted March 3, 2009 Sessions are another good option as well. Then if the user has cookies disabled you can still pass the data as long as session.use_trans_sid is enabled. you can activate this for sure by using <?php ini_set('session.use_trans_sid',TRUE); ?> Link to comment https://forums.phpfreaks.com/topic/147394-confirmation-window/#findComment-775336 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.