大概用的时间是10小时左右,经过老师牛B哄哄的指导页面增色不少.
然后比赛的时候时间是两小时,学校的机房比较坑爹是ie6 DW是2004的版本.
这源码的php部分仅仅是留言板
立即学习“PHP免费学习笔记(深入)”;
当时遇到一个编码错误的问题,原因是把 mysql_query("set names utf8");放到了if语句里面..导致插入的时候不乱,读出的时候是?????问号一堆.
[php]
$conn=mysql_connect('localhost','root','1234');
mysql_select_db('kefei');
mysql_query("set names utf8");
$result=mysql_query("select * from liuyan");
while($row=mysql_fetch_assoc($result)){
var_dump($row);
}
?>
$conn=mysql_connect('localhost','root','1234');
mysql_select_db('kefei');
mysql_query("set names utf8");
$result=mysql_query("select * from liuyan");
while($row=mysql_fetch_assoc($result)){
var_dump($row);
}
?>
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号