0

データベースから情報を引き出して、選択フィールドに入れています。選択フィールドでは全体が表示されますが、データベースに再挿入すると、最初のスペースの後の単語が削除されます。

これが私のコードです:

<?
require_once('./inc/glob_head.php');
if (isset($_POST['submitNewOther']) && $_SERVER['REQUEST_METHOD'] == 'POST') {
    try {
        $checkDB = $database->prepare('SELECT * FROM mainSite_others WHERE forGame=:fg AND otherType=:ot AND otherName=:otn');
        $addToDB = $database->prepare('INSERT INTO mainSite_others(forGame,otherType,otherName,otherDesc,otherCost,membeOnly,otherPageContent) VALUES (:fg,:ot,:otn,:od,:oc,:mo,:opc)');
    } catch (PDOException $e) {
        error_log($e->getMessage());
        exit();
    }
    $checkDB->execute(array(':fg'=>$_POST['forGame'],':ot'=>$_POST['otherType'],':otn'=>$_POST['otherName']));
    if ($checkDB->rowCount() == 0) {
        try {
            $addToDB->execute(array(':fg'=>$_POST['forGame'],':ot'=>$_POST['otherType'],':otn'=>$_POST['otherName'],':od'=>$_POST['otherDesc'],':oc'=>$_POST['otherCost'],':mo'=>$_POST['membeOnly'],':opc'=>$_POST['otherPageContent']));
            redir('addOther.php?action=success');
        } catch (PDOException $e) {
            error_log($e->getMessage());
            exit();
        }
    } else {
        echo "Other already in database";
    }
} elseif (isset($_GET) && $_GET['action'] == 'success') {
?>
    <h2>"Other" added to database.</h2>
    <h4><a href='addOther.php'>Add another</a> or choose something new to do.</h4>
<?
} else {
?>
                        <fieldset>
                            <legend><h2>Add other</h2></legend>
                            <form name='addOther' id='addOther' method='POST'>
                                <select name='forGame'>
                                    <?
                                    try {
                                        $listOfGames = $database->prepare('SELECT * FROM mainSite_games');
                                        $listOfGames->execute();
                                        $games = $listOfGames->fetchAll(PDO::FETCH_ASSOC);
                                        foreach ($games as $game) {
                                            print '<option value='.$game['gameName'].'>'.$game['gameName'].'</option>';
                                        }
                                    } catch (PDOException $e) {
                                        error_log($e->getMessage());
                                        exit();
                                    }
                                    ?>
                                </select><br />
                                <select name='otherType'>
                                    <option value='Item'>Item</option>
                                    <option value='Place'>Place</option>
                                    <option value='Character'>Character</option>
                                </select><br />
                                <input type='text' name='otherName' placeholder='Other name' required /><br />
                                <input type='text' name='otherDesc' placeholder='Other examine (or NA)' required /><br />
                                <input type='text' name='otherCost' placeholder='Other cost (price/NA)' required /><br />
                                <input type='text' name='membeOnly' placeholder='Members Only (Yes/No)' required /><br />
                                <textarea name="otherPageContent" class="span12" rows="10" placeholder="Other page content" required></textarea><br />
                                <input type='submit' name='submitNewOther' class='btn btn-primary' /><br />
                            </form>
                        </fieldset>
                    </div>
                </div>
            </div>
        </body>
    </html>
<?
}
$database = null;
?>

下部 (プレーンな html 部分) は、データベースから抽出される場所です。最初の選択は、それが配置される場所です。見ると全体です:

全体情報

現在、このフォームが送信されると、データベースに正常に入力されますが、このように表示されます-したがって、私のウェブサイトが壊れます(ゲームのデータベース/クエストが知る限り存在しないため、ユーザーがこのゲームコンテンツを表示できるようになりました(これは、SQL 管理画面では次のように表示されます。

破損した

RuneScape は問題ありませんが (スペースがないからだと思いますが?)、Carnage は Carnage Racing のはずです。

これを引き起こしているコードに問題がありますか? 発生しているページはこれだけではありませんが、ソースが見つかればすべてのページで修正できると思います。

redir() は、ヘッダーをいじる必要がないように、JS を使用して redir するカスタム関数です。

4

1 に答える 1

0

問題変数を PHP urlencode 関数に入れることで、この問題を解決しました。ここから私が学んだことは、select タグは、データベースに挿入されるときに、その値からスペースが取り除かれている可能性が高いということです (したがって、プライマリ スペースの後のすべて)。 PHP urldecode 関数でそれを。

于 2013-05-07T04:26:07.507 に答える