Blogger Information
Blog 8
fans 0
comment 0
visits 4554
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
PHP与HTML的关系(PHP HTML 框架 HTML标签)-2018年8月14日22时00分
ZeroUp的博客
Original
814 people have browsed it

学习PHP为什么必须要掌握HTML?为什么选择PHP开发动态网站?

答:因为前端页面主要由HTML代码构成,且由浏览器进行解析执行,而后端由服务器上布置的特殊程序构成。而PHP本身就是用于动态生成HTML代码,所以学习PHP必须要掌握HTML。PHP在网站开发方面具有一定的优势:上手快、开发快、迭代快,有一定程度的用户基础。另外,PHP可以进行原生开发,也可用框架进行开发,而使用框架开发可以使开发规范化,降低维护成本,提高开发效率。所以使用PHP成为了开发动态网站的绝佳选择。

制作表格

实例
<!DOCTYPE html>
<html lang="en">
<head>
	<meta charset="UTF-8">
	<title>表格制作</title>
	<style>
	li{
		list-style-type: none;
	}
	section{
		width: 1000px;
		margin: auto;
	}
	table{
		min-width: 800px;
		text-align: center;
		border-color: #ccc;
		border-collapse: collapse;
	}
	th,td{
		border-color: #ccc;
		padding: 3px;
	}
	ul{
		padding: 0;
	}

	</style>
</head>
<body>
	<section>
		<table border="1">
		<caption><h2>表格题目</h2></caption>
		<tr>
		<th>ID</th>
		<th>名称</th>
		<th>介绍</th>
		<th>型号列表</th>
		<th>外观</th>
		<th>操作</th>
		</tr>
		<tr>
		<td>1</td>
		<td>项目1</td>
		<td><p>项目1介绍项目1介绍项目1介绍项目1介绍</p></td>
		<td>
		<ul>
			<li>型号1</li>
			<li>型号2</li>
			<li>型号3</li>
		</ul>
		</td>
		<td><img src="https://img.php.cn/upload/tool/000/000/009/5882dab3b9222828.png" alt="人民币" style="width:40px;height:40px;"></td>
		<td><a href="javascript:;">查看</a>&nbsp&nbsp<a href="javascript:;">删除</a></td>
		</tr>
		<tr>
		<td>2</td>
		<td>项目1</td>
		<td><p>项目1介绍项目1介绍项目1介绍项目1介绍</p></td>
		<td>
		<ul>
			<li>型号1</li>
			<li>型号2</li>
			<li>型号3</li>
		</ul>
		</td>
		<td><img src="https://img.php.cn/upload/tool/000/000/009/58830511480ed404.png" alt="人民币" style="width:40px;height:40px;"></td>
		<td><a href="javascript:;">查看</a>&nbsp&nbsp<a href="javascript:;">删除</a></td>
		</tr>
		</table>
	</section>
</body>
</html>
运行实例 »
点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

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