您的位置:首页 > 编程语言 > PHP开发

PHP之输出"hello World"

2014-04-04 13:53 696 查看
<html>
<head></head>

<body>

<?php
echo "hello world with default tag!<br/>";
?>

<script language = "php">
echo "hello world with script tag !<br/>";
</script>

<%="hello world with asp tag1 ! <br/>"%>
<%
echo "hello world with asp tag2 !";
%>
</body>
</html>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  php html tag