Home  >  Article  >  Database  >  Mysql数据源程序调用方式(使用php脚本语言调用)

Mysql数据源程序调用方式(使用php脚本语言调用)

WBOY
WBOYOriginal
2016-06-07 18:08:12958browse

建立连接 $link_id=mysql_connect(localhost,数据库管理员名,密码); mysql_select_db(数据库管理员名_db); 关闭连接 mysql_close($link_id);

建立连接
$link_id=mysql_connect("localhost","数据库管理员名","密码");
mysql_select_db("数据库管理员名_db");

 

关闭连接
mysql_close($link_id);

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
Previous article:MSSQL2000使用帮助Next article:MYSQL数据库的搬家流程