我的桌子有什么问题?它不会显示DB

时间:2015-05-26 21:49:23

标签: php html mysql html-table echo

对于PHP来说,我是新手。我一直有问题在我的网站上显示来自mysql的表。我发现这段代码似乎不起作用。有人可以告诉我代码有什么问题吗?或者建议一个更好的方法将mysql输出到html表。

<?php $username="user";$password="password";$database="database";
mysql_connect(localhost,$username,$password);
@mysql_select_db($database) or die( "Unable to select database");
$query="SELECT * FROM tablename";$result=mysql_query($query);
$num=mysql_numrows($result);mysql_close();?>

               <div class="panel-body">
                   <table class="table table-bordered table-striped mb-none" id="datatable-tabletools" data-swf-path="assets/vendor/jquery-datatables/extras/TableTools/swf/copy_csv_xls_pdf.swf">
                       <thead>
                       <tr>
                           <th>id</th>
                           <th>Value1</th>
                           <th>Value2</th>
                           <th>Value3</th>
                           <th>Value4</th>
                           <th>Value5</th>
                           <th>Value6</th>
                           <th>Value7</th>
                           <th>Value8</th>
                       </tr>
                       </thead>
                       <?php$i=0;while ($i < $num)
                       $f1=mysql_result($result,$i,"id");
                           $f2=mysql_result($result,$i,"v1");
                           $f3=mysql_result($result,$i,"v2");
                           $f4=mysql_result($result,$i,"v3");
                           $f5=mysql_result($result,$i,"v4");
                            $f6=mysql_result($result,$i,"v5");
                            $f7=mysql_result($result,$i,"v6");
                            $f8=mysql_result($result,$i,"v7");
                            $f9=mysql_result($result,$i,"v8"); ?>
                       <tbody>

                       <tr class="gradeX">
                           <td><?php echo $f1; ?></td>
                           <td><?php echo $f2; ?></td>
                           <td><?php echo $f3; ?></td>
                           <td><?php echo $f4; ?></td>
                           <td><?php echo $f5; ?></td>
                           <td><?php echo $f6; ?></td>
                           <td><?php echo $f7; ?></td>
                           <td><?php echo $f8; ?></td>
                           <td><?php echo $f9; ?></td>
                       </tr>
                       </tbody>
                   </table>
                   <?php$i++;}?>
               </div> 

2 个答案:

答案 0 :(得分:1)

你这样做:

$num=mysql_numrows($result);mysql_close();?>
                            ^^^^^^^^^^^^^

在此之前:

                   <?php$i=0;while ($i < $num)
                   $f1=mysql_result($result,$i,"id");
                       ^^^^^^^^^^^^^^^^^

无法从查询结果中获取任何内容,因为您终止了结果来自的连接。

请注意,mysql _ *()函数已过时且已弃用。你应该在任何新代码中使用它们。

答案 1 :(得分:0)

如果你刚刚开始使用,请点击以下链接到数据库的代码:

<?php

$servername = "localhost";
$username = "root";
$password = "";
$dbname = "";

try 
{
    $db = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
    echo "Connected successfully" . "<br /> \n";

}
catch (PDOException $e) 
{
    echo "Can't connect to the server !: " . $e->getMessage() . "<br />";
    die();
} 

 try 
 {  
      $db->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);

      $sql = "";
      $stmt = $db->query($sql);
      $array_res = $stmt->fetchAll();

} 
catch (Exception $e) 
{
   echo "Failed: " . $e->getMessage();
}
?>

你只需要编辑你的个人信息。 $ SQL。然后可以自由显示它,所有内容都在下面的链接中解释

PHP.net pdo::query