dougaodi8895 2017-03-12 07:02
浏览 132

可以连接到数据库,但不会显示表中的数据

I've searched and tried several techniques to no avail. I have been trying to make a table that will show information from my database. I can successfully connect to the database, but I cannot pull any information and display it. Could someone tell me where im going wrong? Here is my code:

<?php

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


$conn = new mysqli($servername, $username, $password, $dbname);

if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
} 

$sql = mysql_query("SELECT * FROM siege-leaderboard");
$result = $conn->query($sql);

if ($result->num_rows > 0) {
echo "<table><tr><td>1</td><tdp>2</td><td>3</td><td>4</td><td>5</td></tr>";

while($row = $result->mysql_fetch_assoc()) {
    echo "<tr><td>".$row["1"]."</td><td>".$row["2"]."</td><td>".$row["3"]." 
        </td><td>".$row["4"]."</td><td>".$row["5"]."</td></tr>";
}
echo "</table>";
} else {
echo "0 results";
}
$conn->close();
?>

I have also tried : while($row = $result->fetch_assoc()) and while($row = $result->mysql_fetch_array())\ With same results. Basically the code says "0 results" but theres information in the table, so im not sure whats happening =/

  • 写回答

4条回答 默认 最新

  • doufan2541 2017-03-12 07:06
    关注

    Convert $result->mysql_fetch_assoc() in $result->fetch_assoc().

    You may also deal using $result->fetch_object() in order to use the field name instead of an array index while printing data. This will simplify your life if you will change your table structure in future.

    评论

报告相同问题?

悬赏问题

  • ¥15 Mac系统vs code使用phpstudy如何配置debug来调试php
  • ¥15 目前主流的音乐软件,像网易云音乐,QQ音乐他们的前端和后台部分是用的什么技术实现的?求解!
  • ¥60 pb数据库修改与连接
  • ¥15 spss统计中二分类变量和有序变量的相关性分析可以用kendall相关分析吗?
  • ¥15 拟通过pc下指令到安卓系统,如果追求响应速度,尽可能无延迟,是不是用安卓模拟器会优于实体的安卓手机?如果是,可以快多少毫秒?
  • ¥20 神经网络Sequential name=sequential, built=False
  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)