Maison  >  Article  >  php教程  >  通过PHP连接MYSQL数据库、创建数据库、创建表

通过PHP连接MYSQL数据库、创建数据库、创建表

WBOY
WBOYoriginal
2016-06-13 10:29:351076parcourir

通过PHP连接MYSQL数据库 


      $conn = mysql_connect("localhost","root","password") or die("无法连接数据库");
      mysql_select_db("table" ,$conn) or die ("找不到数据源");


-----------------------------------------------------------------------
 通过PHP创建MYSQL数据库 

      $conn = mysql_connect("localhost","root","password") or die("无法连接数据库");
      mysql_create_db("webjx") or die("无法创建数据库");
      $sqlstr = "create database other_webjx";
      mysql_query($sqlstr) or die("无法创建,一般请检查权限什么的");

----------------------------------------------------------------------------
  创建mysql的表 

      $conn = mysql_connect("localhost","root","password") or die("无法连接数据库");
      mysql_select_db("webjx",$conn) or die("无法连接数据库webjx");
      $sql = "create table webjx_table(
    ids integer not null auto_increment ,
    primary key(ids)
    )";
      $mysql_query($sql) or die(mysql_error());  
Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn