我正在尝试从您在表单中输入的 ID 获取信息。ID 是 ID 的位置,它会从您在表单中输入 ID 的信息中获取信息。这是表单和 Mysql $row 部分..
<input type="text" class="DeathForms" name="userid" maxlength="4" /><br />
$result = mysql_query("SELECT name FROM users WHERE id='".$_POST['userid']."'")
or die(mysql_error());
while($row = mysql_fetch_array( $result )) {
}
现在我想要得到的部分是让它显示来自 $_POST['userid'] 的行。有可能这样做吗?这是我目前拥有的..
<?php
if ( isset ( $_POST['userid'] ) )
{
file_put_contents('deathlist_' . $id . '.txt', "\n" . '
<table width="800" align="center" class="DeathTable">
<tr>
<td width="200" align="center" class="DeathName"><a class="DeathName" href="user?id=' . $_POST['userid'] .'">' . $row['name'] . '</a></td>
<td width="200" align="center" class="DeathLevel">' . $_POST['threat'] . '</td>
</tr>
</table><br />' . file_get_contents ( 'deathlist_' . $id . '.txt' ) );
}
?>
<?php
if ( file_exists ( 'deathlist_' . $id . '.txt' ) )
{
echo file_get_contents('deathlist_' . $id . '.txt') . '</span>';
}
?>
是否可以从 $_POST['userid'] 的 id 获取数据库?