说:php留言板
下面是php脚本
数据表的结构
代码要点
1.textarea可以设置大小,rows代表行数,cols代表列数
2.insert语句插入的列名不用引号,可能识别不出,反正我去掉引号就能插入了$sql="insert into comment(user,comment) values('$user','$comment')";3.mysql_query对select,show,explain,describe语句返回资源类型对其他语句返回true or false,记住及时变换4.php跳转代码 header("location:/index.php");5.设置mysql字符集mysql_query('set names utf8');6.mysql从select取出来的资源用mysql_fetch_array结合while遍历while($row=@mysql_fetch_array($res)){....函数体}7.mysql经常报错,是一些函数即将被弃用,看哪个报错,在前面加上@符号屏蔽掉就可以了
posted on 2016-07-02 15:15 阅读( ...) 评论( ...)