我在表格和在其中插入数据时遇到了一些问题。
我想从 2 个不同的表中获取彼此相邻的 2 行信息。但我无法弄清楚为每个表获取 2 个单独的行。您可以在下面找到我的代码:
<form action="Stap5.php" method="POST">
<table border = '1'>
<tr>
<td>Vloerbetegeling</td>
<td>Wandbetegeling</td>
</tr>
<?php
$query="select * from vloertegel";
$result=mysql_query($query);
$query2="select * from wandtegel";
$result2=mysql_query($query2);
while($row=mysql_fetch_array($result))
{
?>
<tr>
<td><input type='radio' name='FloorTiles' value='<?php echo $row['Naam'] ?>' checked/><?php echo $row['Naam'] ?> <br/>
<img src='<?php echo $row['ImagePath'] ?>' width='200' height='200' /> </td>
</tr>
<?php
}
while($row2=mysql_fetch_array($result2))
{
?>
<tr>
<td><input type='radio' name='WallTiles' value='<?php echo $row2['Naam'] ?>'checked/> <?php echo $row2['Naam'] ?> <br/>
<img src='<?php echo $row2['ImagePath'] ?>' width='200' height='200'/></td>
</tr>
<?php
}
?>
</table>
<input type="submit" name="Stap5Submit" value="Volgende"/><br />
</form>
while 循环让我更难得到结果。