Blogger Information
Blog 5
fans 0
comment 0
visits 2860
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
HTML表单学习&PHP入门---2018年8月15日20时分
APTX4869的博客
Original
573 people have browsed it

学习PHP为什么必须要掌握HTML?

答:从功能上来说,PHP用于提供动态数据,THML用于网页排版,CSS用于美化页面,JS用于在浏览器中操纵页面元素。任何网站都是由网页组成的,也就是说想完成一个网站,必须先会做网页,掌握静态网页的制作技术是学习开发网站的先决条件。这几种语言都是开发网站所需要的。而PHP是用来生成HTML代码的,PHP程序的运行结果就是html,所以要学好html。

为什么选择PHP开发动态网页?

答:PHP是一种开源、通用的计算机脚本语言,尤其适用于网络开发并可嵌入HTML中使用。PHP的语法借鉴吸收C、Java和Perl等流行计算机语言的特点,易于学习,PHP的主要目标是允许网络开发人员快速编写动态页面。相比其他语言能更快的执行动态网页,PHP是将程序嵌入到HTML文档中去执行,执行效率比完全生成HTML标记的CGI要高很多,PHP支持几乎所有流行的数据库以及操作系统。所以PHP开发动态网页是很好的选择。

实例

<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>作业代码</title>
	<style type="text/css">
	  table{
	  	     text-align:center;
	  	     width:800px;
	  	     margin:30px auto;
	  }
	  table caption{
	  	      /*text-align:center;*/
	  	      font-size:3rem;
	  	      font-weight:bolder;
	  	      font-family:楷体;
	  	      color:#000;
	  }
	</style>
</head>
<body>
	<h2>宠物列表</h2>
	<p>哈士奇</p>
	<p>萨摩耶</p>
	<p>阿拉斯加</p>
	<hr>

	<p>宠物列别</p>
<ul>
  <li>哈士奇</li>   <!-- 定义列表项目 -->
  <li>萨摩耶</li>
  <li>阿拉斯加</li>
</ul>
<hr>
	<table border="1">    <!-- 表格标签 -->

		<caption>宠物狗明细</caption>
		<tr>
			<td height="100px" width="20px">编号</td>
			<td>种类</td>
			<td>图片</td>
	        <td>年龄</td>	
			<td>百度百科</td>
		</tr>
		<tr>
        	<td height="100px" width="20px">1</td>
		    <td>哈士奇</td>
			<td><img src="images/hashiqi.jpg" style="border-radius: 50%;box-shadow: 5px 5px 5px #888"></td>
			<td>一岁半</td>
			<td><a href="https://zh.wikipedia.org/wiki/%E5%93%88%E5%A3%AB%E5%A5%87">查看详情</a></td>
		</tr>
		<tr>
			<td height="100px" width="20px">2</td>
			<td>萨摩耶</td>
			<td><img src="images/samoye.jpg" style="border-radius: 50%;box-shadow: 5px 5px 5px #888"></td>
			<td>一岁</td>
			<td><a href="https://zh.wikipedia.org/wiki/%E8%96%A9%E6%91%A9%E8%80%B6%E7%8A%AC">查看详情</a></td>
		</tr>
		<tr>
			<td height="100px" width="20px">3</td>
			<td>阿拉斯加</td>
			<td><img src="images/alasijia.jpg" style="border-radius: 50%;box-shadow: 3px 3px 3px #888"></td>
			<td>半岁</td>
			<td><a href="https://zh.wikipedia.org/wiki/%E9%98%BF%E6%8B%89%E6%96%AF%E5%8A%A0%E9%9B%AA%E6%A9%87%E7%8A%AC">查看详情</a></td>
		</tr>
	</table>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例作业代码截图_20180814_0.PNG作业代码截图_20180814_1.PNG

 


Correction status:qualified

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post