Blogger Information
Blog 15
fans 0
comment 0
visits 8766
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
制作表格,PHP与html的关系
if柚的博客
Original
672 people have browsed it

1学习PHP为什么必须掌握html?
首先需要知道的是PHP就是动态生成html代码的,虽然PHP是编程语言,服务器脚本语言,但是他不但只是在后台处理数据,而且要把后台处理的数据通过前端,也就是html来展现给使用者,还有
就是通过前台页面的提交数据来获取用户输入的数据来进行计算处理的,像PHP中文网,支付的时候,需要填写一些个人信息,然后弹出二维码,进行交互,可以进行人机交互,这个时候就
用到了前台和后台,如果前台用户,都没有地方填信息,怎么来获取使用者的信息,
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------

2为什么选择PHP开发动态网站?
因为PHP上手比较快,比较其他的开发语言,PHP开发项目的进度也比较快,PHP还提供了源代码,学习起来比较方便,还提供了源框架。因为php是原生语言。迭代也比较快,降低了开发成本,节约了
时间,比较容易维护

手写代码

QQ截图20180815174430.png

实例

<!doctype html>
<html>
<head>
	<meta charset="utf-8">
	<title>表格的制作</title>
</head>
<style type="text/css">

 table caption {
		font-size: 1rem;
		font-weight: bolder;
		color: #666;
		text-align:center;
		display: block;

	}
 table tr th{
 	color:red;
}
table tr td{
	color:black;
	text-align:center;
}
table tr:hover {
		background-color: #efefef;
		color: pink;
		}
</style>
<body>
	<table border="6">
	
	<tr>
		 <th colspan="5">列车乘车时间列表</th>
    </tr>
	<tr>
		 <th>编号</th>
		 <th>列次</th>
		 <th>开车时间</th>
		 <th>状态</th>
		 <th>买票</th>
    </tr>
    <tr>
    	 <td>1</td> 
    	 <td>K5555</td>
    	 <td>15:30</td>
    	 <td>候车</td>
    	 <td><a href="https://www.12306.cn/">计划出行</a></td>
    </tr>
    <tr>
    	 <td>2</td>
    	 <td>K6666</td>
    	 <td>16:30</td>
    	 <td>晚点</td>
    	 <td><a href="https://www.12306.cn/">计划出行</a></td>
    </tr>
    <tr>
    	 <td>3</td>
    	 <td>K7777</td>
    	 <td>17:30</td>
    	 <td>你开心就上车吧</td>
    	 <td><a href="https://www.12306.cn/">计划出行</a></td>
    </tr>
    <tr>
    	 <td>4</td>
    	 <td>K8888</td>
    	 <td>18:30</td>
    	 <td>你开心就好</td>
    	 <td><a href="https://www.12306.cn/">计划出行</a></td>
    </tr>	 
    </table>
  

</body>

</html>

运行实例 »

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


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