如何将两个变量添加到Ahref

时间:2016-04-09 02:55:31

标签: variables href

我有两个变量 一个是$钱包 第二是 $链接 我喜欢做那样的事情:

<div>hi' <?php echo $userRow['user_wallet']; ?>&nbsp;<a href="$link$wallet">Check Your Bitcoins </a></div>

我该怎么做?

1 个答案:

答案 0 :(得分:0)

我终于坦克,所以我发现该怎么做..

$user_points = $row['user_points'];
$wallet = $row['user_wallet'];
$link = "https://faucetbox.com/check/";;
$resultlink = $link.$wallet;
<a href="<?php echo "$link"; ?><?php echo $userRow['user_wallet']; ?>" >Check Your Adress</a>