本文主要讲了用PHP来操作数据库,数据表的方法.
/**
* @param
* @author 编程之家 jb51.cc jb51.cc
**/
//通过PHP连接MysqL数据库
$conn = MysqL_connect("localhost","root","password") or die("无法连接数据库");
MysqL_select_db("table",$conn) or die ("找不到数据源");
//通过PHP创建MysqL数据库
$conn = MysqL_connect("localhost","password") or die("无法连接数据库");
MysqL_create_db("webjx") or die("无法创建数据库");
$sqlstr = "create database other_webjx";
MysqL_query($sqlstr) or die("无法创建,一般请检查权限什么的");
//创建MysqL的表
$conn = MysqL_connect("localhost","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());
原文链接:https://www.f2er.com/php/527816.html