详解php语法:mysql_connect()方法 其中这个参数中的server,user,pwd应该怎样填写。

2024-12-21 12:50:39
推荐回答(5个)
回答1:

mysql_connect()的语法是这样的:
mysql_connect("主机名","数据库用户名","数据库密码");
首先,你是在本地测试的,那么主机名你可以用localhost,也可以用127.0.0.1。
其次,既然你在安装mysql时设置了用户名为root,那么,数据库用户名一项就可以填写root。
其三,数据库密码是你的mysql名户名为root的用户的密码。
根据你给出的信息,正确的连接应该是:
mysql_connect("localhost","root","数据库密码");

回答2:

mysql_connect(“数据库服务器ip”,"账号","密码")

例:$conn = mysql_connect("192.168.1.12","root");
mysql_select_db("database_name");

多看手册,多测试……

你的是语法错误,应该看看 标点之类的

回答3:

$sql="insert into message (user,title,content,lastdate)" .
"values (‘$_post[user]’,‘$_post[title]','$_post[content]',now())";
如果id是自动增加的话,,就不用插入了希望有帮助。追梦人831可到CSDN,365testing逛逛

回答4:

$sql="insert into message (user,title,content,lastdate)" .
"values (‘$_post[user]’,‘$_post[title]','$_post[content]',now())";
如果id是自动增加的话,,就不用插入了追梦人831希望help you。referenceCSDN,IT实验室,365testing

回答5:

$link = mysql_connect("localhost", "mysql_user", "mysql_password")
or die("Could not connect: " . mysql_error());
print ("Connected successfully");
mysql_close($link);
?>