我想知道是否有人可以帮助我。
我整理了这个页面,允许用户查看保存在他们帐户中的记录。
我现在要做的是添加用户可以选择单选按钮的功能,单击“位置详细信息”图标,然后他们将被带到与他们选择了收音机的记录相关的“详细信息页面”按钮反对。
我遇到的问题是,无论我选择哪个单选按钮,当我单击图标时,我总是会被带到最后一条记录的“详细信息页面”。(* NB * 就这篇文章而言,我已将“提交”操作从按钮上移开。)
下面的代码创建表格和“位置详细信息”图标
<table id="theTable" width="835" class="sortable-onload-zebra no-arrow rowstyle-alt colstyle-alt paginate-20 max-pages-20 paginationcallback-callbackTest-calculateTotalRating paginationcallback-callbackTest-displayTextInfo sortcompletecallback-callbackTest-calculateTotalRating">
<thead>
<tr>
<th width="60" bgcolor="#ff8401">Select</th>
<th width="150" class="sortable-text" bgcolor="#ff8401">Location</th>
<th width="300" class="sortable-text" bgcolor="#ff8401">Address</th>
<th width="30" class="sortable-text" bgcolor="#ff8401">Finds</th>
</tr>
</thead>
<tbody>
<?php
mysql_data_seek($result, 0);
while ($row = mysql_fetch_array($result)) {
/* display row for each user */
?>
<tr height="80px">
<td style="text-align: center"><input type="radio" id="lid" name="lid" value=<?php echo $row['locationid'];?> /></td>
<td style="text-align: left"><strong><?php echo $row['locationname'];?></strong></td>
<td style="text-align: center"><?php echo $row['returnedaddress'];?></td>
<td style="text-align: center"><strong><em><?php echo $row['totalfinds'];?></em></strong></td>
</tr>
<?php
}
} else {
echo "<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>
<tr>
<td colspan='5'><div align='center'><strong>No locations have been added yet. <a href='addlocation.php'>Click here</a> to add one.</strong></div></td>
</tr>
<tr>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
<td> </td>
</tr>";
}
?>
<form action='locationsaction.php'>
<input type='submit' class='detailsButton' name='type' value='Details' alt='Location Details' title='Location Details' style='margin-right:10px' />
</form>
</tbody>
</table>
因为我打算在一个表单中包含多个提交按钮,所以我创建了以下“locationsaction.php”脚本,您将看到在上面的脚本中调用了该脚本。
<?php
session_start();
$_SESSION['lid'] = $_POST['lid'];
if (isset($_POST['type'])) {
$urls = array(
'Details' => 'locationdetails.php',
'Add Finds' => 'addfinds.php',
'Images' => 'addimages.php',
'View Finds' => 'locationfinds.php'
);
$url = $urls[$_POST['type']];
header("Location: " . $url);
}
?>
我已经为此工作了几天,并尝试了几个教程,但我似乎无法让它工作。
我只是想知道是否有人可以看看这个,并提供一些指导,告诉我如何通过“提交操作”传递正确的单选按钮值。
非常感谢和亲切的问候