以下代码列出了available matches
用户可以接受并相互下注他们的硬币。此时此刻,我一次只能列出一场比赛。
$query = mysql_query("SELECT `create_id` ,`value`, `player1`, `match_id` FROM `multiplayer` WHERE `complete` = 0 ORDER BY `value` DESC LIMIT 1");
echo '<table>';
while($rowtwo = mysql_fetch_array($query)){
$format_coins = number_format($rowtwo['value']);
$value = $rowtwo['value'];
$create_player = $rowtwo['player1'];
$echo = $rowtwo['match_id'];
$create_id = $rowtwo['create_id'];
$button = '
<form action="multiplayer.php" method="POST">
<input type="submit" name="'.$echo.'" value="Accept">
</form>
';
//$button = '<a href="match/'.$echo.'.php">Accept</a>';
echo '<tr>
<td><font size="2" face="Lucida Sans Unicode"><strong>'.$rowtwo['player1'].'</strong> has wagered '.$format_coins.'M/Gp'.$button.'</td>
</tr>';}
echo '</table>';
现在我需要更改DESC LIMIT 1
toDESC LIMIT 10
左右,但是当我一次添加多个列表时,以下代码无法获取它。它只选择列出的一个。
if (isset($_POST[''.$echo.''])) {
if ($user_data['coins'] >= $value) {
if ($user_data['user_id'] == $create_id) {
echo 'You can\'t play yourself.';
} else {
我需要它,以便它能够match_id
从该按钮中获取。如果我将按钮值设置为$echo
它会获取匹配 ID,但似乎我的问题在于我的isset($_POST[''.$echo.''])
Can any help?