<?php
$link = mysql_connect('localhost','root','')or die('連接失敗'.mysql_error().mysql_errno());
mysql_query('create database if not exists an;');
mysql_select_db('an');
mysql_query('create table anweisong(id int ,name char(55));');
$result = mysql_query('insert into anweisong(id,name) values('3','xxx');');
if($result and mysql_affected_rows()>0){
echo 'insert success!';
}else{
echo 'fail!!';
}
各位大神啊~~我在dos窗口中可以正常的添加表anweisong的內容,但是在php腳本文件中,為什麼這個mysql_query()命令就沒用呢?失效啊,求各位大哥指點下!
看看是不是密碼或者權限的問題,參考:http://www.w3school.com.cn/php/php_mysql_create.asp