echo里面的echo标签返回`解析错误:语法错误,意外'?' `

时间:2014-09-02 12:28:25

标签: php echo

echo "<input type=\"hidden\" name=\"eventwhat\" value="<?php echo .$value['searchresultwhat'].;?>">";
echo $eventwhat;

这是我的代码,其中我有一个echo我回显一个变量,这个变量根据click而变化。但是当这样做时我得到错误Parse error: syntax error, unexpected '?'我怀疑这个的解决方案是{{ 1}}因为如果我尝试这样做

\\

它将所有内容变为灰色和PHP我认为不会被调用。感谢任何建议

2 个答案:

答案 0 :(得分:0)

echo "<input type='hidden' name='eventwhat' value='".$value['searchresultwhat']."'>";

当您从echo开始时,不得在其中添加<?php !!

答案 1 :(得分:0)

这是答案

echo "<input type='hidden' name='eventwhat' value='".$value['searchresultwhat']."'>";