Home  >  Article  >  php教程  >  php mysql数据库操作教程

php mysql数据库操作教程

WBOY
WBOYOriginal
2016-06-13 10:08:001307browse

php mysql数据库操作教程 本教程讲了三个实例都是关于php操作mysql数据库的教程,一是连接mysql数据库,二是查询数据库字段名字,三是查询数据库记录。

php教程 mysql教程数据库教程操作教程
本教程讲了三个实例都是关于php操作mysql数据库的教程,一是连接mysql数据库,二是查询数据库字段名字,三是查询数据库记录。
*/
//连接mysql数据库

$link = mysql_connect("localhost", "mysql_user", "mysql_password")
        or die("could not connect: " . mysql_error());
    print ("connected successfully");
    mysql_close($link);


 
//查询mysql字段名

$link = mysql_connect('localhost', 'mysql_user', 'mysql_password');

$fields = mysql_list_fields("database1", "table1", $link);
$columns = mysql_num_fields($fields);

for ($i = 0; $i     echo mysql_field_name($fields, $i) . "n";
}

//查询数据

$conn=mysql_connect("localhost","phpdb","phpdb")
        or die("不能连接数据库服务器: ".mysql_error());
mysql_select_db("test",$conn) or die ("不能选择数据库: ".mysql_error()); 
$result = mysql_query("select * from user",$conn);
while($row=mysql_fetch_array($result)){ 
print "name:".$row[1]; 
print " address:".$row[3]; 
print " tel:".$row[4]; 
print " email:".$row[5];
echo

"
";
}

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn