。
。
—- 网易云热评1、连接数据库$lj=mysql_connect("127.0.0.1",'root','root');2、判断是否连接成功,连接失败返回falsevar_dump($lj);3、数据库 *** 作,增添改查<?php$lj=mysql_connect("127.0.0.1",'root','root');//连接数据库var_dump($lj);echo "<br/>";mysql_query("use aiyou");//选择要 *** 作的数据库名称mysql_query("insert into bucuo value(4,'1233','456')");//增mysql_query("delete from bucuo where id=4");//删mysql_query("update bucuo set name='333' where id=3");//改$cxsj=mysql_query("select * from bucuo where id>2");//查/*$xscxsj=mysql_fetch_array($cxsj);var_dump($xscxsj);echo "<br/>";*/$xscxsj=mysql_fetch_assoc($cxsj);var_dump($xscxsj);echo "<br/>";foreach ($xscxsj as $key => $value) { echo "$value"."<br/>";}?>运行结果:resource(3) of type (mysql link)array(3) { ["Id"]=> string(1) "3" ["name"]=> string(3) "333" ["pass"]=> string(3) "456" }3333456禁止非法,后果自负
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)