Jacklovely

导航

 

 

 

 1 <!doctype html>
 2 <html lang="en">
 3 <head>
 4     <meta charset="UTF-8">
 5     <title>用户信息</title>
 6 </head>
 7 <body>
 8     <h1>用户信息</h1>
 9     <table border="1px">
10         <tr>
11             <td width='50px'>id</td>
12             <td width='50px'>用户名</td>
13             <td width='50px'>密码</td>
14         </tr>
15     <?php 
16         //连接mysql服务器
17         mysql_connect('localhost','root','123');
18         //选择数据库
19         mysql_select_db(test);
20         //设置字符集
21         mysql_query('set names utf8');
22         //写sql语句,关键字最好大写,方便阅读
23         $sql = "SELECT * FROM users ORDER BY id";
24         //把sql发送到mysql服务器
25         $result = mysql_query($sql);
26         //
27         if (!$result) {
28             die(mysql_error());
29         }
30         while ($row = mysql_fetch_assoc($result)) {
31             echo "<tr><td>{$row[id]}</td><td>{$row[name]}</td><td>{$row[password]}</td></tr>";
32             // echo "<pre>";
33             // print_r($row);
34             // echo "</pre>";
35         }
36         //释放resource型结果集$result所关联的内存
37         mysql_free_result($result);
38         //关闭mysql连接
39         mysql_close();
40      ?>
41     </table>
42     <a href="">上一页</a>
43     <a href="">下一页</a>
44 </body>
45 </html>

 

posted on 2016-11-15 14:23  Jacklovely  阅读(173)  评论(0编辑  收藏  举报