我在 MYSQL 中有一个数据库,它包含 2 个表:
Table: political_party
+----------+--------------------+-------+
| party_id | party_abbreviation | party |
+----------+--------------------+-------+
Table: polling_party_result
+----+------+-----------------+
| id | p_id | number_of_votes |
+----+------+-----------------+
我正在编写一个输出表单的 PHP 程序,该程序更新了 id 从 1 到 X 运行的政治派对结果表。我面临的问题是,在表单上,id 与上述政治派对表中的 party_abbreviation 列有关.
也就是说 1(在political_party_result 表中)应该带出AP(从political_party 表中)2 = ADC
3 = PDP 等。
这是我的 HTML 代码:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>HTML INEC</title>
</head>
<body>
<form action="inechp.php" method="post" name="form1">
ID: <input name="id" type="text" /> <br /> <br />
Polling Unit: <input name="pid" type="text" /> <br /> <br />
Number of Votes: <input name="votes" type="text" /> <br /> <br />
<input type="submit" /> <br />
</form>
<form action="inechp.php" method="post" name="form2">
Polling Unit: <input name="unit" type="text" /> <br />
Number of Votes: <input name="nov" type="text" /> <br />
<input type="submit" />
</form>
</body>
</html>
这是我的PHP代码:
<?php
$con = mysqli_connect("localhost", "root", "", "inec_results");
mysqli_query($con, "UPDATE inec_results.polling_party_result SET p_id ='$_POST[pid]' , number_of_votes = '$_POST[votes]' WHERE id = '$_POST[id]'");
?>
如果我的解释不令人满意,请原谅我,因为我对 PHP 有点陌生。