0

これは、Story カテゴリから少なくとも 1 つのチェックボックスを選択している限り機能します。Story のチェックボックスがチェックされておらず、他のカテゴリがチェックされていない場合、何も返されません。

このような奇妙なエラーの原因を知りたいです。

homes_id name story bedroom bath の順である。

編集: 以前にこの質問の前の部分を尋ねましたが、今は別の障害に対処しています 編集: $valid_responses を foreach に追加するのを忘れていました

<!DOCTYPE HTML>
<html lang="en-US">
<head>
    <meta charset="UTF-8">
    <title>Homes Test 2</title> 
</head>

<body>

<form id="form1" name="form1" method="post" action="">

    <p>
        <h3>story</h3>
        <label><input type="checkbox" name="story[]" value="1" id="story_1" />one story</label>
        <label><input type="checkbox" name="story[]" value="2" id="story_2" />two story</label>
    </p>

    <p>
        <h3>bedrooms</h3>
        <label><input type="checkbox" name="bedroom[]" value="2" id="bed_2" />two beds</label>
        <label><input type="checkbox" name="bedroom[]" value="3" id="bed_3" />three beds</label>
        <label><input type="checkbox" name="bedroom[]" value="4" id="bed_4" />four beds</label>
    </p>

    <p>
        <h3>baths</h3>
        <label><input type="checkbox" name="bath[]" value="1" id="bath_1" />one bath</label>
        <label><input type="checkbox" name="bath[]" value="2" id="bath_2" />two baths</label>
        <label><input type="checkbox" name="bath[]" value="3" id="bath_3" />three baths</label>
    </p>

    <input type="submit" value="search" />

</form>

<?php

if (isset($_POST['story'])) {

    DEFINE ('DB_USER', 'root'); 
    DEFINE ('DB_PASSWORD', 'testpass'); 
    DEFINE ('DB_HOST', 'localhost'); 
    DEFINE ('DB_NAME', 'homes');

    $dbc = @mysqli_connect (DB_HOST, DB_USER, DB_PASSWORD, DB_NAME) OR die ('Could not connect to MySQL: ' . mysqli_connect_error() );
    $q = "SELECT name, story, bedroom, bath FROM homes WHERE 1";

    // Protect against injection attacks
    $valid_responses = array(
        'bedroom' => array(
            '1','2'),
        'story' => array(
            '1','2'),
        'bath' => array(
            '1','2','3'),
    );
    foreach ($valid_responses as $field=>$values) {
        $selection = array_intersect($_POST[$field],$values);
        if (!empty($selection)) {
            $q .= ' AND ' . $field . ' IN ("' . implode('", "', $selection) . '")';
            $r = mysqli_query($dbc, $q);
        }else{
            echo "selection was empty";
        }
    }
    while($data = $r->fetch_assoc()) {
        $rows[] = $data;
    }

    echo json_encode($rows);

    echo "<pre>$q</pre>";
}



?>

</body>
</html>
4

1 に答える 1