PHP - 在echo字符串中插入变量

时间:2017-03-23 08:50:23

标签: php echo double-quotes single-quotes

我需要在以下字符串中插入变量$ ActID:

$dt4
  V1 V2 V3
1  a  c  b
2  a  c  b
3  a  c  b
4  a  c  b
5  a  c  b
6  a  c  b
7  a  c  b
8  a  c  b
9  a  c  b

数字1(ActID = 1)必须由变量$ ActID替换,如此ActID = $ ActID。

我知道这很简单,但我对单引号和双引号感到很困惑

2 个答案:

答案 0 :(得分:0)

echo' <button class="InfoBtn" onclick="location.href=\'ActivityDetails.php?ActID='.$ActID.'\';" >More Info</button>';

答案 1 :(得分:0)

试试这个

echo' <button class="InfoBtn" onclick="location.href=\'ActivityDetails.php?ActID='.$ActID.'\';" >More Info</button>';