Jump to content

How to retrive check box values and related static text using a link


Ramyahv

Recommended Posts

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

Link to comment
Share on other sites

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>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.