批改状态:未批改
                        老师批语:
                    
                            学习PHP为什么必须要掌握HTML?
答:前端HTML代码,由浏览器负责解释并执行;
后端代码,例如php,由服务器上的特殊程序来运行
为什么选择PHP开发动态网站?
答:快,上手快,开发快,更新快,迭代快
<style type="text/css">
	table {		
		border-collapse: collapse; /*折叠表格线*/
		width: 700px;
		text-align: center;
		margin: 20px auto;
	}
	table caption {
		font-size: 2rem;
		font-weight: bolder;
		color: #666;
		margin-bottom: 20px;
	}
	table, th, td {
		border: 1px solid #666;
		
	}
	
	table tr:first-child {
		background-color: lightgreen;
	}
	table tr:hover {
		background-color: #efefef;
		color: coral;
	}
	table tr td img {
		padding: 5px;
		border-radius: 10px;
	}
	table tr td a {
		text-decoration: none;
		width:140px;
		height:40px;
		padding:5px;
		border:1px solid black;
		background: white;
		color:black;
		border-radius: 8px;
	}
	table tr td a:hover {
		background: black;
		color:white;
	}
</style>
<table>
	<caption>购物车</caption>
	<tr>
		<th>序列</th>
		<th>名称</th>
		<th>品类</th>
		<th>数量</th>
		<th>约略图</th>
		<th>BUY</th>
	</tr>
	<tr>
		<td>1</td>
		<td>手机</td>
		<td>三星</td>
		<td>1台</td>
		<td><img src="images/phone.jpg" width="100"></td>
		<td><a href="http://taobao.com">点击BUY</a></td>
	</tr>
	<tr>
		<td>2</td>
		<td>电视</td>
		<td>小米</td>
		<td>1台</td>
		<td><img src="images/tv.jpg" width="100"></td>
		<td><a href="http://taobao.com">点击BUY</a></td>
	</tr>
	<tr>
		<td>3</td>
		<td>电脑</td>
		<td>戴尔</td>
		<td>1台</td>
		<td><img src="images/pc.jpg" width="100"></td>
		<td><a href="http://taobao.com">点击BUY</a></td>
	</tr>
</table>点击 "运行实例" 按钮查看在线实例
总结:
前端HTML代码,由浏览器负责解释并执行;
后端代码,例如php,由服务器上的特殊程序来运行
php优势:快,上手快,开发快,更新快,迭代快
                Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号