时间:2021-07-01 10:21:17 帮助过:18人阅读
mysql_data_seek($result,11);
print_r(mysql_fetch_row($result));
额,表示你的需求不明确。以下代码不知道是不是你想要的
/**
* 获取多行数据
* Enter description here ...
* @param string $database
* @param string $sql
*/
public function getAll( $sql )
{
$this->conn();
mysql_select_db($this->config['dbname'], $this->db);
$result = mysql_query( $sql );
$arr = array();
while ($row = mysql_fetch_array($result, MYSQL_ASSOC))
{
$arr[] = $row;
}
mysql_close();
return $arr;
}
这种访问数据库的方法很少用,一般都用PDO模式