码迷,mamicode.com
首页 > 数据库 > 详细

mysql_fetch_row mysql_fetch_array

时间:2014-05-08 09:55:20      阅读:381      评论:0      收藏:0      [点我收藏+]

标签:style   int   http   c   com   数据   

1 mysql_fetch_row  mysql_fetch_array

1.1 mysql_fetch_row

<?php
while($row = mysql_fetch_row($result)){
$n=0;

?>
<b><span style=""> 
<?php
if($n==0){
echo $row [14];

?>

1.2 mysql_fetch_array

注释:mysql_fetch_array() 是 mysql_fetch_row() 的扩展版本。除了将数据以数字索引方式储存在数组中之外,还可以将数据作为关联索引储存,用字段名作为键名

例子

<?php
$con = mysql_connect("localhost", "hello", "321");
if (!$con)
  {
  die(‘Could not connect: ‘ . mysql_error());
  }

$db_selected = mysql_select_db("test_db",$con);
$sql = "SELECT * from Person WHERE Lastname=‘Adams‘";
$result = mysql_query($sql,$con);
print_r(mysql_fetch_array($result));

mysql_close($con);
?>

 

 

mysql_fetch_row mysql_fetch_array,布布扣,bubuko.com

mysql_fetch_row mysql_fetch_array

标签:style   int   http   c   com   数据   

原文地址:http://www.cnblogs.com/cd-snoopy/p/3714560.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!