以表格的形式显示数据
Info.class.php
<?php
//Info 表的实体类
class Info
{
public $code;
public $name;
publlic $sex;
public $nation;
public $birthday;
}
text.php
<?php
//显示数据
//表和类对应:表名是类名,列名是类里面的成员
//表里面的每一条数据对应是类实例化的对象
include(Info.class.php);
$attr=array();
$info1=new Info();
$info1->code="p001";
$info1->name="张三";
$info1->sex="男";
$info1->nation="汉族";
$info1->birthday="1988-2-3";
array_push($attr,$info1);//向数组里添加元素
$info2=new Info();
$info2->code="p002";
$info2->name="李四";
$info2->sex="女";
$info2->nation="汉族";
$info2->birthday="1989-2-3";
array_push($attr,$info2);
$info3=new Info();
$info3->code="p001";
$info3->name="王五";
$info3->sex="男";
$info3->nation="回族";
$info3->birthday="1990-2-3";
array_push($attr,$info3);
echo "<table width='100%' border='1' cellpadding='0' cellspacing='0'>";
echo "<tr><td>代号</td><td>姓名</td><td>性别</td><td>民族</td><td>生日</td></tr>";
foreach($attr as $v)
{
echo "<tr><td>{$v->code}</td><td>{$v->name}</td><td>{$v->sex}</td><td>{$v->nation}</td><td>{$v->birthday}</td></tr>";
}
echo "</table>";
?>