A股上市公司传智教育(股票代码 003032)旗下技术交流社区北京昌平校区

 找回密码
 加入黑马

QQ登录

只需一步,快速开始

调用数据库数据示例:
<--   conn.php-->
<?php
        $conn = mysql_connect("localhost","root","");   //连接数据库
        mysql_query("set names utf8");    // 设置编码
        mysql_select_db("test",$conn);  //选择使用的数据库
?>
以上是conn.php

<?php
        require("conn.php");   // 调用conn.php
        $result= mysql_query("select * from student ", $conn);    //创建结果集
        $row = mysql_fetch_assoc($result);        //将结果集数据放到row数组中
?>
<table border ="1" width="95%">
        <tr bgcolor = "#e0e0e0">
                <th width="80">学号</th><th width="60">姓名</th>  
                <th width ="60">性别</th><th width ="100">出生日期</th>
                <th width ="60">籍贯</th><th width ="60">班级ID</th>
        </tr>
        <? while($row = mysql_fetch_assoc($result)){ ?>   // 循环输出记录在页面上
                <tr><td><?=$row['sno']?></td><td><?=$row['sname']?> </td>
                        <td><?=$row['sex']?></td><td><?=$row['birthdate']?> </td>
                        <td><?=$row['birthPlace']?> </td><td><?=$row['classId']?> </td></tr>
                        <? }?>
</table>


0 个回复

您需要登录后才可以回帖 登录 | 加入黑马