私は、システムにアクセスできる特定のユーザーに質問するための学校評価フォームを備えた小さなWebベースのシステムを設計しました。いくつかの質問と入力はラジオタイプ(1または2または3または4)になります!コードは機能し、入力をデータベースに挿入できますが、合計マークを計算してデータベースに保存するための正しいクエリがわかりません。これは現在、以下のコードで機能しています。
<?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 = $_POST['v2'];
$v3 = $_POST['v3'];
$total = $_POST['total'];
mysql_query("INSERT into Form1 (P1,P2,P3,TOTAL)
values('$v1','$v2','$v3','$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="" >
<table style="width: 20%" >
<tr>
<th> Criteria </th>
<th> </th>
</tr>
<tr>
<th> Excellent </th>
<td > 4 </td>
</tr>
<tr>
<th > Good <font size="3" > </font></th>
<td> 3 <font size="4" > </font></td>
</tr>
<tr>
<th > Average <font size="3" > </font></th>
<td > 2 <font size="4" > </font></td>
</tr>
<tr>
<th > Poor <font size="3" > </font></th>
<td > 1 <font size="4" > </td>
</tr>
<font size='4'>
<table style="width: 70%">
<tr>
<th > School Evaluation <font size="4" > </font></th>
<tr>
<th > Criteria <font size="4" > </font></th>
<th> 4<font size="4" > </font></th>
<th> 3<font size="4" > </font></th>
<th> 2<font size="4" > </font></th>
<th> 1<font size="4" > </font></th>
</tr>
<tr>
<th> Your attendance<font size="4" > </font></th>
<td> <input type="radio" name ="v1" value = "4" checked = "checked" /></td>
<td> <input type="radio" name ="v1" value = "3" /></td>
<td> <input type="radio" name ="v1" value = "2" /></td>
<td> <input type="radio" name ="v1" value = "1" /></td>
</tr>
<tr>
<th > Your grades <font size="4" > </font></th>
<td> <input type="radio" name ="v2" value = "4" checked = "checked" /></td>
<td> <input type="radio" name ="v2" value = "3" /></td>
<td> <input type="radio" name ="v2" value = "2" /></td>
<td> <input type="radio" name ="v2" value = "1" /></td>
</tr>
<tr>
<th >Your self-control <font size="4" > </font></th>
<td> <input type="radio" name ="v3" value = "4" checked = "checked" /></td>
<td> <input type="radio" name ="v3" value = "3" /></td>
<td> <input type="radio" name ="v3" value = "2" /></td>
<td> <input type="radio" name ="v3" value = "1" /></td>
</tr>
</tr>
</table>
<br>
<a href="evaE.php"> <td><input type="submit" name="submit" value="Submit">
<input type="reset" name="clear" value="clear" style="width: 70px"></td>
<?php
$total = $v1+ $v2 + $v3;
?>
</form>
</center>
</div>
</body>
</html>
私はこのクエリを使用しましたが、うまくいきません..助けてください?
<?php
$total = $v1+ $v2 + $v3;
?>