• ベストアンサー
※ ChatGPTを利用し、要約された質問です(原文:mysql_resultのエラー)

MySQL Result Error: How to Handle and Display Error

このQ&Aのポイント
  • In PHP5, when using the mysql_result function to retrieve a user ID from a MySQL database, an error message is displayed in the browser if the specified username does not exist.
  • To prevent the error message from being displayed when an invalid username is provided, proper error handling can be implemented.
  • The function can check if the result set is valid before retrieving data using mysql_result, and handle the error by displaying a custom message or taking any other necessary action.

質問者が選んだベストアンサー

  • ベストアンサー
  • asuncion
  • ベストアンサー率33% (2127/6290)
回答No.1

$res = mysql_query($idsql, $link); $rows = mysql_num_rows($res); if ($rows > 0) { $userid = mysql_result($res, 0); } else { /* DBから1件もselectできなかった($nameが存在しなかった)ときの処理 */ } mysql_close($link);

mywatertan
質問者

お礼

ありがとうございます。 うまく動きました。 mysql_num_rows こんな関数があったのですね。 大変助かりました。

すると、全ての回答が全文表示されます。

関連するQ&A