我对PHP非常缺乏经验,只是一些基本的了解,我试图通过post方法将MySQL查询的结果发送到特定的URL。如果我在网页上的表格中显示,那么在连接信息之后我会......
$result = mysql_query("select Selection, Date, Name from selectiontable order by Date");
echo "<table border='1'>
<tr>
<th>Selection</th>
<th>Race</th>
<th>Name</th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['Selection'] . "</td>";
echo "<td>" . $row['Date'] . "</td>";
echo "<td>" . $row['Name'] . "</td>";
echo "</tr>";
}
echo "</table>";
我不想打印到表格,而是想通过 Post 将此信息发送到 URL。我搜索了高低,似乎只能找到有关如何发送通过表单输入的信息的信息。此查询产生大约 200 行。有人向我发送了以下脚本以进行调整,但我不知道如何将查询结果放入其中。
<?php
$entries=(isset($_GET['entries']) ? $_GET['entries'] : '1');
echo '<h2>Send</h2>';
echo '<style> .over{clear:both; margin:5px; border:1px solid #ccc; padding:10px;} label{display:block;} input {display:block; margin:5px 0 0 0;}</style>';
echo'<form method="post" action="http://www.domain.com" id="" name="">';
for ($i=0; $i < $entries; $i++) {
echo '
<div class="over">
<div class="proof_type">
<label for="selection_'.$i.'">Selection</label>
<input name="selection_'.$i.'" value="" type="text" >
</div>
<div class="proof_type">
<label for="date_'.$i.'">Date</label>
<input name="date_'.$i.'" value="" type="text" >
</div>
<div class="proof_type">
<label for="name_'.$i.'">Name</label>
<input name="name_'.$i.'" value="" type="text" >
</div>
</div>
';
}
echo '<input type="hidden" name="action" value="insert" />';
echo'<input type="submit" name="submit" value="submit" class="button" />';
echo'</form>';
?>
我将非常感谢任何帮助。谢谢。