在echo和href行中同时使用html和php

时间:2014-05-20 11:17:18

标签: php html echo string-concatenation

我有变量:

 $myvar = 'myarchive.pdf';

我如何将其嵌入到此:

echo('<tr> <td> <a href="nextpage.php?file=trial.pdf"> download now </a> </td> </tr>');

我想知道是否有办法这样做:

 echo('<tr> <td> <a href="nextpage.php?file=".'$myvar'.> download now </a> </td> </tr>');

3 个答案:

答案 0 :(得分:5)

您没有正确地将变量附加到字符串。您还必须在引号内包含 nextpage.php?file = variable 。但是你在变量名之前关闭它。

<a href="nextpage.php?file=".'$myvar'.>
                           ^

请尝试使用

echo('<tr> <td> <a href="nextpage.php?file='.$myvar.'"> download now </a> </td> </tr>');

答案 1 :(得分:0)

试试这个

echo('<tr> <td> <a href="nextpage.php?file='.$myvar.'> download now </a> </td> </tr>');

答案 2 :(得分:0)

这应该有效。如果必须

,请重新添加括号
echo '<tr><td><a href="nextpage.php?file='.$myvar.'">download now</a></td></tr>';