马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。
您需要 登录 才可以下载或查看,没有帐号?立即注册
x
先看两个函数:
1、mysql_query
语法:intmysql_query(stringquery,int[link_identifier]);
返回值:整数
当query查询字符串是UPDATE、INSERT及DELETE时,返回true或者false;
查询的字符串是SELECT则返回记录集
2、mysql_fetch_object返回类资料。
语法:objectmysql_fetch_object(intresult,int[result_typ]);
返回值:类
本函数将查询结果result拆到类变量中。若result没有数据,则返回false值。
实例应用-读取
<?
$exec="select*fromuser";
$result=mysql_query($exec);
while($rs=mysql_fetch_object($result))
{
echo"username:".$rs->username."<br>";
}
?>
实例应用-写入//添加数据 if(@$_GET["action"]=="add") { $exec="insertintonews(name,title,consten)values(".$_POST[name].",".$_POST[title].",".$_POST[consten].")"; $result=mysql_query($exec); echo$exec; } <formname="form1"method="post"action="?action=add">
<inputtype="text"name="name"value="">
<inputtype="text"name="title"value="">
<inputtype="text"name="consten"value="">
<inputtype="submit"name="Submit"value="提交">
</form>
实例应用-删除
删除:$exec="deletefromckuyunwhereid=1";
视频地址:链接:http://pan.baidu.com/s/1gd5qZNP密码:g4vu
|