gpt4 book ai didi

php - 连接两个 PHP 变量以创建按钮单击链接

转载 作者:行者123 更新时间:2023-11-29 12:28:56 25 4
gpt4 key购买 nike

我有两个变量,一个在 cfg.php 中声明,另一个是从 mysql 调用的。

我需要加入这两个来创建一个按钮点击链接。我被困在这里:

cfg.php中我有

$mainurl = "http://training.com/something/"

我创建此按钮链接的页面包含 cfg.php

从 mysql 中,用户 ID 被这样调用:

$query1 = "SELECT * from  WHERE City like 'Paris' Limit 0,50";
$query = $db->query($query1) ;

$hotel = mysql_fetch_row($query, MYSQL_ASSOC);

我的按钮点击代码是 选择

但是链接是这样的

<button onclick="window.location.href =http://training.com/something/106175/overview">Select</button>

并且按钮单击不起作用。

任何帮助将不胜感激。

更新......当我尝试以下操作时

    <button onclick = "window.location.href     =\''.$mainURL.$hotel['userID'].'/overview">Select</button>

我明白

<button onclick="window.location.href ='http://training.com/something/105560/overview">Select</button>

问候,贾伊

最佳答案

您需要将 URL 括在其自己的引号内。修改您的 PHP,使其输出类似

的内容
<button onclick="window.location.href='http://training.com/something/106175/overview'">Select</button>

关于php - 连接两个 PHP 变量以创建按钮单击链接,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/27894249/

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