I have a PHP page that displays the total of a MySQL query with radio buttons. This is inside a form. user should select a radio button to fill out all the form then the total will be stored in the database , I want to pass the total value of the selected radio button to the next page and print it out.
I know this is an easy one but I cant come right with the solution.
My code for the PHP Page is as follows:
<?php
session_start();
$Load=$_SESSION['login_user'];
include('../connect.php');
$sql= "Select name from student where ID='$Load'";
$username = mysql_query($sql);
$id=$_SESSION['login_user'];
if (isset($_POST['submit']))
{
$v1 = $_POST['v1'];
$v2 = intval($_POST['v2']);
$v3 = intval($_POST['v3']);
$v4 = intval($_POST['v4']);
$total = $2 + $v3 + $v4 ;
mysql_query("INSERT into Form1 (ID,P1,P2,P3,TOTAL)
values('$id','$v2','$v3','$v4','$total')") or die(mysql_error());
header("Location: mark.php");
}
?>
<html>
<head>
<?php
if(!isset($_SESSION['login_user']))
header("Location:index.html");
?>
<title>Q&A Form</title>
</head>
<body>
<center><form method="post" action="mark.php" >
<table style="width: 20%" >
<font size='4'>
<table style="width: 70%">
<tr>
<th > School Evaluation <font size="4" > </font></th>
<tr>
<th> Your attendance<font size="4" > </font></th>
<td> <input type="radio" name ="v2" value = "4" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v2" value = "3" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v2" value = "2" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v2" value = "1" onclick="updateTotal();" /></td>
</tr>
<tr>
<th > Your grades <font size="4" > </font></th>
<td> <input type="radio" name ="v3" value = "4" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v3" value = "3" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v3" value = "2" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v3" value = "1" onclick="updateTotal();" /></td>
</tr>
<tr>
<th >Your self-control <font size="4" > </font></th>
<td> <input type="radio" name ="v4" value = "4" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v4" value = "3" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v4" value = "2" onclick="updateTotal();" /></td>
<td> <input type="radio" name ="v4" value = "1" onclick="updateTotal();" /></td>
</tr>
</tr>
</table>
<br>
<td><input type="submit" name="submit" value="Submit">
<input type="reset" name="clear" value="clear" style="width: 70px"></td>
</form>
</center>
</div>
</body>
</html>
when the user press submit all radio input will be stored in database and it will go to mark.php i want to print out the total in this page how can i pass the total to next page ?
$_SESSION– Carlos Campderrós Nov 12 '12 at 14:38$total = $2 + $v3 + $v4 ;should be$total = $v2 + $v3 + $v4 ;– Tivie Nov 12 '12 at 14:47