Home  >  Article  >  php教程  >  php实战第十二天

php实战第十二天

WBOY
WBOYOriginal
2016-06-13 10:57:12849browse

 

 

 
大概用的时间是10小时左右,经过老师牛B哄哄的指导页面增色不少.

然后比赛的时候时间是两小时,学校的机房比较坑爹是ie6 DW是2004的版本.

这源码的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);


 }


?>

 

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn