<?php
//连接数据库,并选中 if ($dbc = @mysql_connect('localhost', 'root', '')){ if (@mysql_select_db('mydata')){ print '
selected!
';
}else{
print '
can not select error: '. mysql_error().'
';
}
}else{
print '
can not connect. error: '. mysql_error().'
';
}
//创建表 /* $create = 'CREATE TABLE myTable( id INT UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(100) NOT NULL )';print "
create……
";
if (@mysql_query($create)){
print '
created!
';
}else {
print '
can not create error: '. mysql_error().'
';
}mysql_close();*/
//插入数据 $insert = 'INSERT INTO myTable (id, name) VALUES (12345, "charles")'; if (@mysql_query($insert)){ print '
inserted!
';
}else {
print '
can not insert error: '. mysql_error().'
';
}mysql_close();
?>
This is the foot of the document
以上是小编为您精心准备的的内容,在的博客、问答、公众号、人物、课程等栏目也有的相关内容,欢迎继续使用右上角搜索按钮进行搜索数据库
, php
, 基础
教程
sql数据库基础教程、数据库系统基础教程、数据库应用基础教程、oracle数据库基础教程、数据库基础教程视频,以便于您获取更多的相关知识。
时间: 2024-11-01 04:57:34