Blogger Information
Blog 27
fans 0
comment 0
visits 17918
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
表格与列表-8.14
Yyk.的博客
Original
857 people have browsed it

1.学习PHP为什么必须掌HTML?

 答:web分为前端和后端开发。前端主要是指静态页面的编写,包括html5,css,javascript。后端也被称为服务器端,运行在服务器环境中。
前端html代码,由浏览器负责解释并执行。后端代码(如php),由服务器上的特殊程序来运行。
php的作用就是用来动态生成HTML代码,即PHP程序的运行结果就是html,所以要想学好php就必须要学HTML。
2.为什么要选择PHP?
 php与其他后端代码比有很多优点,如:上手快,开发快,更新快(迭代快)。

实例

<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>无标题文档</title>
	<style type="text/css">
		table{border: #B11417 1px solid;
			border-width: thin;
			background: #AD8F90;
			width: 500px;
			border-collapse: collapse/*折叠表格线*/
		}
		
		tr,th{border: #B11417 1px solid;
			width: 80px;height: 40px;
			text-align: center;
			
		}
		tr:hover{background: #ccc}
		
		td{border: #B11417 1px solid;margin: auto}
		img{margin-top: 5px;
			border-radius: 8px}
		a{border: 1px solid;
			padding: 5px;
			border-radius: 6px;
			text-decoration: none;
			background: white;
			color: black
		
		}
		a:hover{background: black;
			color: white
			
			
		}
	</style>
</head>

<body style="font-family: 'kaiti'">
	<table>
		<caption><h1>购物清单</h1></caption>
		<tr>
			<th>编号</th>
			<th>种类</th>
			<th>图片</th>
			<th>链接</th>
			
		</tr>
		
		<tr>
			<td>1</td>
			<td>牛奶</td>
			<td><img src="img/2419558_221735216163_2.jpg" width="80px"></td>
			<td><a href="">立即下单</a></td>
		</tr>
		
		<tr>
			<td>2</td>
			<td>面包</td>
			<td><img src="img/thSJTBSEJ1.jpg" width="80px" height="50px"></td>
			<td><a href="">立即下单</a></td>
		</tr>
		
		<tr>
			<td>3</td>
			<td>篮球</td>
			<td><img src="img/thPJJV6QPD.jpg" width="80px"></td>
			<td><a href="">立即下单</a></td>
		</tr>
		<tr>
			<td>4</td>
			<td>书</td>
			<td><img src="img/thI9D21321.jpg" width="80px"></td>
			<td><a href="">立即下单</a></td>
		</tr>		
		
	</table>
	<ul>注意事项
		<li>下单后不得退款</li>
		<li>不接受还价</li>
		<li>一切解释权归本公司所有</li>
	</ul>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例

个人总结:

今天的课让我对php和HTML有了一个清楚的认识。老实说,之前我是一点都不知道这两者的区别的。

朱老师讲的很好,这样讲的话,在开始学PHP之前就大概的了解,这样对学习PHP是有很大的帮助的。

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