表格输出mysql内容不行 请帮忙看看有什么有关问题 多谢各位

WBOY
Release: 2016-06-13 12:17:31
Original
913 people have browsed it

表格输出mysql内容不行 请帮忙看看有什么问题 谢谢各位!
 $dbconn=mysql_connect("localhost", "root","");
 $sqlname="ms_qua";
 mysql_select_db($sqlname,$dbconn);
 session_start(); 
 
  ?>  
 


表名:厂家资质信息

 
  
 

 
$sql = "SELECT * FROM tables where qua='ms_qua' order by TABLE_NAME";
 $result = mysql_query($sql);    
 while($row=mysql_fetch_array($result))
 {
//print_r($row);
?>


 
 
 
 
 
 
 
 
 
 

    }
  mysql_close($dbconn); 
  ?> 
  
 
序号
 
部门
 
岗位
 
姓名
 
身份证号码
 
合同签订时间
 
证书名称
 
发证单位
 
证书编号
 
发证日期

------解决思路----------------------
把错误输出打开,比如error_reporting(E_ALL);
Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!