随笔 - 78  文章 - 25  trackbacks - 0
<2009年7月>
2829301234
567891011
12131415161718
19202122232425
2627282930311
2345678

常用链接

留言簿

随笔分类(75)

随笔档案(78)

相册

实用Links

我的Links

搜索

  •  

积分与排名

  • 积分 - 111810
  • 排名 - 519

最新评论

阅读排行榜

评论排行榜

processShowData.php
<html>
    <head>
        <title>查询数据库表信息</title>
    </head>
    <body>
        <center>
            <form name="myForm" action="processShowData.php">
                <table  border="1" cellspacing="0" cellpadding="0">
                    <caption>学生一览表</caption>
                        <th>学号</th>
                        <th>姓名</th>
                        <th>年龄</th>
                        <th>性别</th>
                        <th>地址</th>
                        <?php
                            $link=mysql_connect("localhost","root","root");
                            mysql_select_db("rorely");
                            $exec="select * from test";
                            $result=mysql_query($exec);
                            while($rs=mysql_fetch_object($result)){
                                $id=$rs->id;
                                $name=$rs->name;
                                $age=$rs->age;
                                $sex=$rs->sex;
                                $address=$rs->address;                    
                        ?>
                    <tr align="center">
                    <td><?php echo $id ?></td>
                    <td><?php echo $name ?></td>
                    <td><?php echo $age ?></td>
                    <td><?php echo $sex ?></td>
                    <td><?php echo $address ?></td>
                </tr>
                <?php
                    }
                    mysql_close();
                ?>
                </table>
            </form>
        </center>
    </body>
</html>

结果如下:
学号 姓名 年龄 性别 地址
1 Jane 26 female wenming cun 123#
3 Tome 21 male wenming cun 32#
4 Lily 25 female wenming cun 2#
5 Lucy 25 female wenming cun 2#
6 Jim 22 male wenmin cun 45#
7 Jim 22 male wenmin cun 45#
8 Jim 22 male wenmin cun 45#
9 Jim 22 male wenmin cun 45#
10 Jim 22 male wenmin cun 45#
11 Jim 22 male wenmin cun 45#
12 Jim 22 male wenmin cun 45#
13 Jim 22 male wenmin cun 45#
14 Jim 22 male wenmin cun 45#
15 Jim 22 male wenmin cun 45#
18 Jim 22 male wenmin cun 45#
20 Jim 22 male wenmin cun 45#
78 lili 22 female wenming cun 23#
79 hj 30 male wenming cun 23#
80 hj 30 male wenming cun 23#


posted on 2009-07-01 15:51 期待明天 阅读(2035) 评论(1)  编辑  收藏 所属分类: PHP

FeedBack:
# re: php 显示数据表记录 2010-03-16 16:33 槐槐
谢谢  回复  更多评论
  

只有注册用户登录后才能发表评论。


网站导航: