前提・実現したいこと
商品リストを商品名・カテゴリー・価格で並び替えたい
セレクトボックスで選択して並び替えをしたい
発生している問題・エラーメッセージ
下記SQL文のORDER BYの後ろを書き換えればソート方法を変えられるが
セレクトボックスで選択した内容に対応させる方法がわかりません。
$sql = "SELECT code,category,name,price,explanation FROM mst_product WHERE name like ? ORDER BY price DESC;";
該当のソースコード
<!doctype html> <html lang="ja"> <head> <meta charset="utf-8"> <title>商品リスト</title> </head> <body> <form method="post" action="proo.php"> 商品名:<input name="s"><br> 並び替え:<select name="m"> <option value="a">商品名</option> <option value="b">価格</option> <option value="c">カテゴリー</option> </select><br> <input type="submit" value="検索"> </form> </body> </html> <?php if(isset($_POST["s"])){ $arr = array(sprintf('%%%s%%', $_POST["s"])); $dsn = "mysql:dbname=shop;host=localhost"; $my = new PDO($dsn,'root',''); $sql = "SELECT code,category,name,price,explanation FROM mst_product WHERE name like ? ORDER BY price DESC;"; $st = $my->prepare($sql); $st->execute($arr); $html = "<table border='1'><tr><th>商品コード</th><th>カテゴリー</th><th>タイトル</th><th>価格</th><th>詳細</th></tr>"; while($row = $st->fetch(PDO::FETCH_ASSOC)){ $html .= "<tr>"; foreach($row as $item) $html .= "<td>{$item}</td>"; $html .= "</tr>"; } $html .= "</table>"; echo($html); } ?>
試したこと
実装方法の検討がつきません。
コマンドプロンプトのデータベース上でソートを変更する方法はたくさん出てきましたが
webサイト内でデータベースと接続してソートする方法は見つかりませんでした。
補足情報(FW/ツールのバージョンなど)
Windows10 XAMPP環境で動かしています。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。