Blogger Information
Blog 5
fans 0
comment 0
visits 3098
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
学习PHP的意义和作用以及常用HTML的<table>标签的用法-2018年8月15日23:30
牛牛的博客
Original
772 people have browsed it
  1. 学习PHP为什么必须要掌握HTML?

    因为PHP最主要的功能就是动态生成HTML,不了解HTML何谈用PHP生成HTML?只有掌握了HTML,才能灵活运用PHP去生成我们想要的HTML。


    2.为什么选择PHP开发动态网站?

    PHP开发效率高,其它语言三个月才能开发出来的项目,PHP一个月就可以完成。


    制作一张表格,要求使用到:
    <table><tr>+<th>,<tr>+<td>,
    <h2>,<p>,<ul>+<li>,<img>,<a>
    允许使用有限的CSS进行样式美化,但不可以过量。

实例

<!DOCTYPE html>
<html>
<head>
	<title>购物清单</title>
</head>
<body>
	<style type="text/css">
		.tr1{background: pink;}
		a:hover{
		background: black;
		color:white;
		}
	</style>
	<p><h2>购物清单</h2></p>
	<table>
		<tr class="tr1"  align="center">
			<th><h2>序号</h2></th>
			<th><h2>商品名称</h2></th>
			<th><h2>缩略图</h2></th>
			<th><h2>价格</h2></th>
			<th><h2>数量</h2></th>
			<th><h2>操作</h2></th>
		</tr>
		<tr align="center">
			<td>1</td>
			<td>苹 果</td>
			<td><img src="images/apple.jpg"></td>
			<td>6</td>
			<td>
				<ul>
					<li>1</li>
					<li>2</li>
					<li>3</li>
				</ul>
			</td>
			<td><a href="buy.php">点击购 买</a></td>
		</tr>
		<tr align="center">
			<td>2</td>
			<td>啤酒</td>
			<td><img src="images/beer.jpg"></td>
			<td>10</td>
			<td>6</td>
			<td><a href="buy.php">点击购 买</a></td>
		</tr>
		<tr align="center">
			<td>3</td>
			<td>牛肉</td>
			<td><img src="images/cow.jpg"></td>
			<td>18</td>
			<td>2</td>
			<td><a href="buy.php">点击购 买</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
Author's latest blog post