在php变量中传递html标记

时间:2015-02-17 10:52:08

标签: php html

我想在php变量中传递锚标记,而href属性中的值来自另一个可变量。代码如下所示。

  echo "<a href='mailto:umair.malik@purelogics.net?Subject=Requesting measurement file for the following parameters&body=Backplane Connector = '".htmlspecialchars($aRow[$aColumns[0]])."' >Click here to request</a>";

问题是在执行此代码之后,$ aRow [$ aColumns [0]]中的任何内容都没有出现,而firebug中的代码如下所示: 点击此处索取

1 个答案:

答案 0 :(得分:0)

在连接变量之前删除'。尝试使用 -

".htmlspecialchars($aRow[$aColumns[0]])."'

而不是 -

'".htmlspecialchars($aRow[$aColumns[0]])."'