如何在HTML标签中打印php代码?

时间:2012-11-03 00:32:22

标签: php html echo

你好我有这个变量是字符串。

  

$ this-> product_output_html =<<< HTML

     

一些HTML代码

           

     

                 HTML;

我想在他的类测试中添加一个像这样的循环的php循环

  

如果($ admin-> errors){foreach($ admin->错误为$ error){        echo''。$ error。''; }}

我试图添加但不起作用。我在课堂上加了''测试'>并且在测试之前但仍然不起作用。我做错了什么?

非常感谢

2 个答案:

答案 0 :(得分:0)

替换

echo ".$error.";

echo $error;

答案 1 :(得分:0)

尝试类似

的内容
$this->product_output_html = 'Start of html code as a string';
if ($admin->errors) {
  foreach ($admin->errors as $error) {
    $this->product_output_html .= '<br />'.$error;
  }
}
$this->product_output_html .= '<br />End of html code as a string';
echo $this->product_output_html;