现在的位置: 首页 > 综合 > 正文

php嵌入html

2013年10月11日 ⁄ 综合 ⁄ 共 198字 ⁄ 字号 评论关闭

<?php
function outputMyName($fname) {
   echo "我的名字叫 ";
    echo "周 ".$fname."<br />";
}
 ?>
<html>
<body>
<?php
outputMyName("胜超");
outputMyName("宇恒");
outputMyName("宇盟");
?>
</body>
</html>

 

结果如下:

我的名字叫 周 胜超
我的名字叫 周 宇恒
我的名字叫 周 宇盟

抱歉!评论已关闭.