听先人说.

WBOY
WBOYOriginal
2016-06-13 13:12:37877browse

听前辈说...
听前辈说要在php页面加
header("Content-type: text/html; charset=utf-8");
这个,我加了还是乱码噢 ,
  就这俩个php页面, 还有俩个页面是分页类来的。。

business_form.php
header("Content-type: text/html; charset=utf-8");
include 'comm.php';
if(isset($_POST['qq'])){
$qq = $_POST['qq'];
$selling_price = $_POST['selling_price'];
$original = $_POST['original'];
$expires = $_POST['expires'];


business_table.php


include 'paging.php';
 $con =mysql_connect("localhost","root","123456");
 mysql_select_db("business",$con);
 $result = mysql_paging_query("SELECT * FROM business_table", 5);
 echo "







";
while($row=mysql_fetch_array($result)){
echo "";
  echo "";
  echo "";
  echo "";
  echo "";
  echo "";
  echo "";
  }
echo "
QQ 价格 原价 到期时间 服务
" . $row['qq'] . "" . $row['selling_price'] . "" . $row['original'] . "" . $row['expires'] . "" . $row['diamond']."
";
mysql_paging_bar();//显示分页条 下面也来一个
mysql_close($con);

?>


------解决方案--------------------
business_table.php页面 缺少 SET NAMES 'UTF8' 语句
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