1. ホーム
  2. php

[解決済み] リソースID #4 なぜこれが表示されるのですか?

2022-02-07 16:25:57

質問内容

私はテスト目的のために取り組んでいるかなり基本的なフォーラムのテンプレートを持っている

トピックを作成し、送信を押すと、プロセスはデータベースを更新しますが、画面には出力されません。また、以下のコードから$resultをechoすると、なぜResource id #4が表示されるのでしょうか?

<?php

$host="server"; // Host name 
$username="usernamehere"; // Mysql username 
$password=""; // Mysql password 
$db_name="forum"; // Database name 
$tbl_name="question"; // Table name 

// Connect to server and select databse.
mysql_connect("$host", "$username", "")or die("cannot connect"); 
mysql_select_db("$db_name")or die("cannot select DB");
$sql="SELECT * FROM $tbl_name ORDER BY id DESC";
// OREDER BY id DESC is order result by descending

$result=mysql_query($sql);
echo $result;
?>
<html>
<body>
<table width="90%" border="0" align="center" cellpadding="3" cellspacing="1" bgcolor="#CCCCCC">
<tr>
<td width="6%" align="center" bgcolor="#E6E6E6"><strong>#</strong></td>
<td width="53%" align="center" bgcolor="#E6E6E6"><strong>Topic</strong></td>
<td width="15%" align="center" bgcolor="#E6E6E6"><strong>Views</strong></td>
<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Replies</strong></td>
<td width="13%" align="center" bgcolor="#E6E6E6"><strong>Date/Time</strong></td>
</tr>

<?php

// Start looping table row
while($rows=mysql_fetch_array($result)){
?>
<tr>
<td bgcolor="#FFFFFF"><? echo $rows['id']; ?></td>
<td bgcolor="#FFFFFF"><a href="view_topic.php?id=<? echo $rows['id']; ?>"><? echo $rows['topic']; ?></a><BR></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['view']; ?></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['reply']; ?></td>
<td align="center" bgcolor="#FFFFFF"><? echo $rows['datetime']; ?></td>
</tr>

<?php
// Exit looping and close connection 
}
mysql_close();
?>

<tr>
<td colspan="5" align="right" bgcolor="#E6E6E6"><a href="create_topic.php"><strong>Create New Topic</strong> </a></td>
</tr>
</table>
</body>
</html>

解決方法は?

あなたは resource id #4 なぜなら $result はリソースなので、この方法でその中に含まれる値を取り出す必要があります。

$result=mysql_query($sql);
$values = mysql_fetch_array($result);
var_dump($values);

詳細はこちら リソース変数

アップデート2(OPコメントより)

フィールド名を使用して値を表示している場合は、次のように変更する必要があります。

while($rows=mysql_fetch_array($result,MYSQL_ASSOC))

または、直接 mysql_fetch_assoc() あなたの場合、次のようになります。

while($rows=mysql_fetch_assoc($result)){
      echo $rows['id'];
}