Ramyahv Posted November 2, 2007 Share Posted November 2, 2007 Hi , The process is Resume Building. In 1st page we will be selecting the types of resume to be built and its corresponding prices (their is a check box to select the required type of resume)will get added up. On order of this resume (ORDER RESUME is a link which takes to other page),In this page the Static text which a user clicks on check box and the total cost of that resume builing has to appear in that next page ,so how do we code this using php Thanks Quote Link to comment https://forums.phpfreaks.com/topic/75781-how-to-retrive-check-box-values-and-related-static-text-using-a-link/ Share on other sites More sharing options...
pocobueno1388 Posted November 2, 2007 Share Posted November 2, 2007 Here is a quick example <?php if (isset($_POST['submit'])){ $cost = 0; foreach ($_POST['chk'] as $val){ $cost = $cost + $val; } echo "Your total is $cost<p>"; } ?> <form method="post"> <input type="checkbox" name="chk[]" value="100">$100<br /> <input type="checkbox" name="chk[]" value="120">$120<br /> <input type="checkbox" name="chk[]" value="300">$300<br /> <input type="submit" name="submit"> </form> Quote Link to comment https://forums.phpfreaks.com/topic/75781-how-to-retrive-check-box-values-and-related-static-text-using-a-link/#findComment-383529 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.