douyin9987 2015-06-07 14:54
浏览 17
已采纳

调用时不会显示配置文件。 php - mysql

      <?php
if (!isset($_POST['submitted'])) {//1

// Checs for the ID
if (isset($_GET['id']) && is_numeric($_GET['id'])) {//2

// MySQL Connect
require_once('mysql_connect.php');

$id = mysql_real_escape_string($_GET['id']);

$query = "SELECT id, name FROM websites WHERE id = $id";
$result = mysql_query($query) OR die (mysql_error());
$row = mysql_fetch_array($result, MYSQL_ASSOC);
?>


// ROW WITH THE ERROR
<?php echo $row['name']; ?></strong><br /><?php echo $row['banner']; ?><? echo $row['description'];?>


 <?php
    } else {
    echo '<font color="red">You have to select a server to view</font>';
    die();
    }
    } else {
    // MySQL Connect
    require_once('mysql_connect.php');

    $id = mysql_real_escape_string($_POST['id']);

    // Choose the web for votes
    $query = "SELECT id, votes FROM websites WHERE id = $id";
    $result = mysql_query($query) OR die(mysql_error());
    $row = mysql_fetch_array($result, MYSQL_ASSOC);

    $votes = $row['votes'];
    $url = $row['url'];
    $id = $row['id'];
    $banner = $row['banner'];

    $result = mysql_query($query) OR die(mysql_error());
    } // end
    ?>

All that is printing is the Name, the rest is not being printed.

I'm just wondering where i'm going wrong?

Its supposed to print the Name, Banner, and description from $id.

  • 写回答

2条回答 默认 最新

  • douduoyan5943 2015-06-07 15:02
    关注

    You need to specify ALL desired fields that you wish to retrieve in your SQL query:

    $query = "SELECT id, name, banner, description FROM websites WHERE id = $id";
    

    Alternatively, use SELECT * FROM websites to retrieve all available rows.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 微信公众平台自制会员卡可以通过收款码收款码收款进行自动积分吗
  • ¥15 随身WiFi网络灯亮但是没有网络,如何解决?
  • ¥15 gdf格式的脑电数据如何处理matlab
  • ¥20 重新写的代码替换了之后运行hbuliderx就这样了
  • ¥100 监控抖音用户作品更新可以微信公众号提醒
  • ¥15 UE5 如何可以不渲染HDRIBackdrop背景
  • ¥70 2048小游戏毕设项目
  • ¥20 mysql架构,按照姓名分表
  • ¥15 MATLAB实现区间[a,b]上的Gauss-Legendre积分
  • ¥15 delphi webbrowser组件网页下拉菜单自动选择问题