数据库格式
1.连接数据库
建立config.php,存储连接字符串
建立config.php,存储连接字符串
1 2 3 4 5 6 7 8 9 |
<?php $mysql_server_name='localhost'; //改成自己的mysql数据库服务器 $mysql_username='root'; //改成自己的mysql数据库用户名 $mysql_password='123456'; //改成自己的mysql数据库密码 $mysql_database='test'; //改成自己的mysql数据库名 ?> |
2.连接字符串,显示数据、关闭连接
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 |
<?php require("config.php");//加载连接数据库变量 $link = mysql_connect($mysql_server_name, $mysql_username, $mysql_password) ;//连接数据库 if(!link) { die('连接失败'); } mysql_query("set names 'utf8'"); //数据库输出编码 应该与你的数据库编码保持一致建议用UTF-8 mysql_select_db($mysql_database); //打开数据库 $sql ="select * from table limit 100"; //SQL语句 $result = mysql_query($sql,$link); //查询 if(mysql_num_rows($result)==0) { echo "查不到"; return false; } echo "<table id='luluit' width=‘90%’>"; //排版代码 echo "<thead> <tr> <th width='820px'>标题</th> <th width='90px'>时间</th> <th width='100px'>作者</th> <th width='110px'>板块</th> </tr> </thead>"; //排版代码 //读取表中的内容,这里我们用while,可以根据具体情况,用for 或其他的. while($row = mysql_fetch_array($result)) { echo "<tr> <td><a href=http://cl.miicool.info/".$row['Link']." target='_blank'>".$row['Name']."</a></td> <td>".$row['Time']."</td> <td>".$row['Author']."</td> <td>".$row['Website']."</td> </tr>"; } //排版代码 mysql_close($link); ?> |
未完待续……
发表评论
要发表评论,您必须先登录。