我已经看过示例,并且我知道如何解决它,但我使用的复选框上的名称使用了连接。因此,我不知道如何使用名称在新页面上发布数据。到目前为止,我尝试了几种方法。我需要在saveGames.php上发布数据,然后我将使用一个函数来解析数据并选择只有$ id并检查的数据(例如:" 43checked")
UpcomingGames.php
<form name="saveGames" action="saveGames.php" method="post">
//Code
</form>
/*PHP function for setting up checkboxes for many different rows. I set up the name as $id which is the gameId and I added checkbox next to it so later I can parse through the data and select the ones with checked as the value because those games were selected. */
function checkbox($params)
{
echo "<td>";
$id = $params["gameID"];
echo "<input id=\"$id\" type=\"checkbox\" name='". $id ."checkbox'>";
echo "</td>";
}
尝试在此页面上发布saveGames.php
<?php include('header.php'); ?>
<?php
require_once('dbBaseDao.php');
require_once('dbUserDao.php');
require_once('dbBotDao.php');
$userDao = new dbUserDao();
$botDao = new dbBotDao();
$ChosenGame = $_POST["'. $id 'checked"];
echo $ChosenGame;
?>
答案 0 :(得分:0)
您是否真的需要输入标记的名称部分中的单词复选框。如果不是那么问题就解决了。
如果你想要它,那么你必须找到一个方法将存储在变量$ id中的值传递给下一页。您可以使用隐藏的输入标记。