a,下载安装一款静态web服务器,ex:HTTPD,IIS;
b,下载安装PHP引擎;
c,在静态服务器配置一下,声明PHP引擎的存在。
注意,以上三步可以用xampp套件来完成。
启动Apache,输入地址:http:127.0.0.1/xxx.php
文件目录:
网页地址:
代码:
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <meta http-equiv="X-UA-Compatible" content="IE=edge"> 6 <title>GETTING STARTED WITH BRACKETS</title> 7 </head> 8 <body> 9 <h2>PHP网页</h2> 10 <script> 11 for(var i=0;i<50;i++){ 12 document.write('*'); 13 } 14 document.write('<hr/>'); 15 </script> 16 <?php 17 for($i=0;$i<50;$i++){ 18 echo '*'; 19 } 20 echo '<hr/>'; 21 ?> 22 </body> 23 </html>