-1

PHPスクリプトを使用してmysqlデータベースからデータを取得しています問題は、テーブルにデータがありますが、フェッチするとNOのみが返されることです

次のエラーが表示されます

Warning: mysql_fetch_assoc(): supplied argument is not a valid MySQL result resource in /home/content/i/h/u/ihus235/html/cs/emrapp/surveyDescription.php on line 73

[]

HTMLコード

  <html<body>
   <INPUT TYPE = "Text" VALUE ="user_id" NAME = "user_id"> This form allows you to connect to the server.<br>
   <form action="surveyDescription.php" method="post" enctype="multipart/form-data"><br>

   Type (or select) Filename: 
    <input type="submit" value="submit">
    </html>

PHP コード

   <?php 
   $host = "********"; 
   $user = "********"; 
   $pass = "********"; 
   $database = "****"; 

   $linkID = mysql_connect($host, $user, $pass) or die("Could not connect to host."); 
   mysql_select_db($database, $linkID) or die("Could not find database."); 

  if (!function_exists('json_encode'))
  {
   function json_encode($a=false)
  {
  if (is_null($a)) return 'null';
  if ($a === false) return 'false';
  if ($a === true) return 'true';
  if (is_scalar($a))
   {
    if (is_float($a))
    {
    // Always use "." for floats.
    return floatval(str_replace(",", ".", strval($a)));
    }

    if (is_string($a))
    {
    static $jsonReplaces = array(array("\\", "/", "\n", "\t", "\r", "\b", "\f", '"'), array('\\\\', '\\/', '\\n', '\\t', '\\r', '\\b', '\\f', '\"'));
    return '"' . str_replace($jsonReplaces[0], $jsonReplaces[1], $a) . '"';
    }
    else
    return $a;
    }
    $isList = true;
    for ($i = 0, reset($a); $i < count($a); $i++, next($a))
    {
    if (key($a) !== $i)
    {
     $isList = false;
     break;
     }
     }
     $result = array();
     if ($isList)
     {
     foreach ($a as $v) $result[] = json_encode($v);
     return '[' . join(',', $result) . ']';
     }
     else
     {
     foreach ($a as $k => $v) $result[] = json_encode($k).':'.json_encode($v);
     return '{' . join(',', $result) . '}';
     }
     }
     }



   $user_id=$_POST['user_id'];
   $query = mysql_query("SELECT s.*, u.user_id FROM survey_master AS s 
   JOIN user_profile AS u on u.user_id = s.user_id where s.user_id=$user_id");

   $rows = array();
 while($row = mysql_fetch_assoc($query)) {
 $rows[] = $row;
 }
echo json_encode($rows);

  ?> 
4

2 に答える 2

1

タグ<input>の中に入れるform

<body>

   <form action="surveyDescription.php" method="post" enctype="multipart/form-data"><br>
   <INPUT TYPE = "Text" VALUE ="user_id" NAME = "user_id"> This form allows you
    to connect to the server.<br>
   Type (or select) Filename: 
   <input type="submit" value="submit">
    </form>

</body>

その他の構文エラー:

<html>tag is missing ">"<body>で、末尾のタグを閉じていない

于 2012-07-26T05:07:33.110 に答える
0

問題は

$query = mysql_query("SELECT s.*, u.user_id FROM survey_master AS s 
JOIN user_profile AS u on u.user_id = s.user_id where s.user_id=$user_id");

$user_id に値がない可能性があります。確認してください。

于 2012-07-26T04:49:48.197 に答える