php代码如何嵌套html代码
php代码如何嵌套html代码,下面编程教程网小编给大家简单介绍一下是运用方法!
利用echo代码实现
echo ‘<form action="" method="post">
服务器地址:<input type="text" name="host" value="localhost" /><br />
数据库账号:<input type="text" name="user" value="" /><br />
数据库密码:<input type="password" name="pwd" value="" /><br />
指定数据库:<input type="text" name="db" value="test" /><br />
</form>‘;
利用<<<标记符实现
<?php
print <<<EOT
<a href="$rs[url]" title="$rs[descrip]" target="_blank">$rs[name]</a>
EOT;
?>
直接引入html文件
include ("aaa.html");
以上是编程学习网小编为您介绍的“php代码如何嵌套html代码”的全面内容,想了解更多关于 php入门 内容,请继续关注编程基础学习网。