文章列表
syntax error, unexpected end of file in
E:\php\code\test\weibo_list.php on line 33
对于这种错误,我受够了,不就是<?php}?>,php后面要留一个空格。
还有就是,每行记得写分号。
PHP 存入数据库乱码
- 博客分类:
- PHP页面制作
PHP三码合一:
页面编码,数据库编码,程式代码
比如用utf-8
A.保证页面编码:
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="Content-Language" content="en" />
<title>title</title>
</head>
B.数据库编码
建立表的时候,注意选择 ...