0

以下は私のコードです:-

$cat=mysql_real_escape_string($_REQUEST['cat']);
$selqry="select * from quizes where category='$cat'";
$selres=mysql_query($selqry) or die(mysql_error());
$questions = array();
if(mysql_num_rows($selres)) {
while($question = mysql_fetch_assoc($selres)) {
  $questions[] = array('post'=>$question);
}
}
else
{
echo "[{\"Result\":\"No questions in this category\"}]";
exit(0);
}
header('Content-type: application/json');
echo json_encode(array('questions'=>$questions));

これで、null として出力される一重引用符を含むフィールドを除いて、テーブル クイズのすべてが適切な json 形式で出力されます。

それで、私は何か間違ったことをしていますか?

前もって感謝します

4

0 に答える 0