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

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>

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.