固定。是由其他地方的表标签引起的
答案 0 :(得分:0)
这有用吗?
echo "<table><tr><td>".$variable."</td><td>$".$variable."</td>
<td><form method='post'><input type='hidden' name='bet_id' value='".$variable."' /><input type='submit' name='take_cash' value='Take Bet' /></form></td></tr></table>";
}
答案 1 :(得分:0)
请参阅附加代码和渲染输出的屏幕截图。唯一不同于我的代码和你的代码是a)css(可能是内联和块级元素的混合?)b)你的数据库记录和自定义函数,也许c)浏览器版本。我会在那里寻找答案。这是我在Chrome版本31和Mac上的最新Firefox上看到的内容,我认为这就是您的目标。
<div class='floatl' style='width: 50%;'>
<div class='contenthead'>50/50 Cash</div>
<div class='contentcontent'><table>
<?
$i = 0;
while($i < 10){
echo "<tr><td>turtle</td><td>$monnnnnnaay</td>
<td><form method='post'><input type='hidden' name='bet_id' value='snapple' /><input type='submit' name='take_cash' value='Take Bet' /></form></td></tr>";
$i++;
}
?>
</table>
<form method='post'>
<p>Wager: $ <input type='number' min='10000' max='1000000' step='10000' value='10000' name='cash' /></p>
<span style='font-size:11px;color:#999;'>Minimum wager: $10,000</span><br />
<p style='padding: 1px;'>Confirm: <input type='submit' name='post_cash' value='Place Bet' /></p>
</form>
</div>
</div>