gpt4 book ai didi

php - 通过 URL php 传递一个动态变量

转载 作者:行者123 更新时间:2023-11-29 06:46:08 25 4
gpt4 key购买 nike

标题我不太确定,我尽力了。我有一个表格,其中显示了使用此文件的数据库中的信息

显示.php

<?php

mysql_connect("localhost", "root", "root") or die(mysql_error());
mysql_select_db("tournaments") or die(mysql_error());

$result = mysql_query("SELECT * FROM tournies")
or die(mysql_error());

echo '<table id="bets" class="tablesorter" cellspacing="0" summary="Datapass">
<thead>
<tr>
<th>Tournament <br> Name</th>
<th>Pot</th>
<th>Maximum <br> Players</th>
<th>Minimum <br> Players</th>
<th>Host</th>
<th></th>
<th></th>
</tr>
</thead>
<tbody>';



while($row = mysql_fetch_array( $result )) {

$i=0; if( $i % 2 == 0 ) {
$class = "";
} else {
$class = "";
}

echo "<tr" . $class . "><td>";
echo $row['tour_name'];
$tour_id = $row['tour_name'];
echo "</td><td>";
echo $row['pot']," Tokens";
echo "</td><td class=\"BR\">";
echo $row['max_players']," Players";
echo "</td><td class=\"BR\">";
echo $row['min_players']," Players";
echo "</td><td class=\"BR\">";
echo $row['host'];
echo "</td><td>";
echo "<input id=\"delete_button\" type=\"button\" value=\"Delete Row\" onClick=\"SomeDeleteRowFunction(this)\">";
echo "</td><td>";
echo "<form action=\"join.php?name=$name\" method=\"POST\" >";
echo "<input id=\"join_button\" type=\"submit\" value=\"Join\">";
echo "</td></tr>";
}

echo "</tbody></table>";
?>

基本上,我希望用户按下表格一行中的一个按钮,然后他们转到一个名为 join.php 的新页面。我需要点击行中的人员用户名和锦标赛名称。

例如这是我的页面:my page

当他们点击第一行末尾的加入按钮时,它应该将他们发送到

'join.php?name=thierusernamehere&tourname=dfgdds'

非常感谢任何帮助。谢谢。

最佳答案

echo '<td><a href="join.php?name='.$row['name'].'&tourname='.$row['tour_name'].'">Join</a></td>'

关于php - 通过 URL php 传递一个动态变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18603702/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com