Blogger Information
Blog 10
fans 1
comment 0
visits 6551
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
2.20作业_php第一天
红色熊猫的博客
Original
637 people have browsed it


实例

<?php
$arr=array('name'=>'fugui','age'=>33,'add'=>'hefei','herf'=>'It程序')
?>
<!DOCTYPE html>
<html>
<head>
	<meta charset="utf-8">
	<title>创建一个html页面,将其中的数据,用php变量替换并显示出来</title>
	<style type="text/css">
		table{margin: 0 auto}
		table,td,th{border: 1px solid red;text-align: center;}
		th{width: 10%}
	</style>
</head>
<body>
<table>
	<thead>
		<th>姓名</th>
		<th>年龄</th>
		<th>地址</th>
		<th>职业</th>
	</thead>
	
	<tbody>
		<tr>
			<td><?=$arr['name']?></td>
			<td><?=$arr['age']?></td>
			<td><?=$arr['add']?></td>
			<td><?php  echo $arr['herf']?></td>
		</tr>
	</tbody>
</table>
</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