在我的代码中,我想定义一个函数/变量/ ....
看起来应该是这样的:
<?php
//define something here
{
"html code inside here"
}
// some php code
if(...)
{
"output the html
}
我该怎么做?
答案 0 :(得分:1)
您需要先将它放在变量/函数中,或者回显下面的html。
选项#1:
0
选项#2:
$html = "This is test html <a href='http://google.com'>google</a>";
if ( !empty($_POST) )
{
echo $html;
}
选项#3:
if ( !empty($_POST) )
{
echo "This is test html <a href='http://google.com'>google</a>";
//Or simply:
?>
This is test html <a href="http://google.com">google</a>
<?php
}