Table of Content
为什么要学习PHP?
-
可以运行在服务器端
-
跨平台性
-
脚本语言
-
免费
下面来一段 Hello World:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>learning php</title>
</head>
<body>
<p>
<?php
echo 'Hello, world!';
?></p>
</body>
</html>