JasonBruce88 Posted March 24, 2010 Share Posted March 24, 2010 Hi I have hit a brick wall. Basically I am trying to create a system which will end up with something similar to gocompare.com etc, where a quote is generated from the results of previous pages. This is nearly all completed apart from one thing. On one of the previous pages where criteria is gathered for the quote they can select the products they need quotes on from a few check boxes, with the option to select more than one. My question is how can I add these multiple values from these selected check boxes to a cookie to use at a latter date. I have read in other places to store these in a databse which they will be, if the quote is saved or taken further. I just need to be able to take these values across to another page to be used again. Cheers Quote Link to comment https://forums.phpfreaks.com/topic/196347-check-box-no-code-this-time-well-not-yet-any-way/ Share on other sites More sharing options...
KevinM1 Posted March 24, 2010 Share Posted March 24, 2010 Hi I have hit a brick wall. Basically I am trying to create a system which will end up with something similar to gocompare.com etc, where a quote is generated from the results of previous pages. This is nearly all completed apart from one thing. On one of the previous pages where criteria is gathered for the quote they can select the products they need quotes on from a few check boxes, with the option to select more than one. My question is how can I add these multiple values from these selected check boxes to a cookie to use at a latter date. I have read in other places to store these in a databse which they will be, if the quote is saved or taken further. I just need to be able to take these values across to another page to be used again. Cheers Just store them in a session: session_start(); $_SESSION['checkbox'] = $_POST['checkbox']; And retrieve them in another page from that session session_start(); $checkbox = $_SESSION['checkbox']; Quote Link to comment https://forums.phpfreaks.com/topic/196347-check-box-no-code-this-time-well-not-yet-any-way/#findComment-1030986 Share on other sites More sharing options...
JasonBruce88 Posted March 25, 2010 Author Share Posted March 25, 2010 Thank you Quote Link to comment https://forums.phpfreaks.com/topic/196347-check-box-no-code-this-time-well-not-yet-any-way/#findComment-1031676 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.