0

私はショッピング サイトを作成しています。管理セクションでは、mysql データベース テーブル名カテゴリのカテゴリ リストと一緒にカテゴリを完成させます。

そして、私は ajax コードを書いて、これを使用してカテゴリのドロップ リストにデータを入力できるようにしました。

<script type="text/javascript">
function changeContent(str)
{
if (str=="")
  {
    // if blank, we'll set our innerHTML to be blank.
    document.getElementById("content").innerHTML="";
    return;
  } 
if (window.XMLHttpRequest)
    {   // code for IE7+, Firefox, Chrome, Opera, Safari
        // create a new XML http Request that will go to our generator webpage.
        xmlhttp=new XMLHttpRequest();
    }
else
    {   // code for IE6, IE5
        // create an activeX object
        xmlhttp=new ActiveXObject("Microsoft.XMLHTTP");
    }
    // on state change
    xmlhttp.onreadystatechange=function()
    {
    // if we get a good response from the webpage, display the output
    if (xmlhttp.readyState==4 && xmlhttp.status==200)
    {
        document.getElementById("content").innerHTML=xmlhttp.responseText;
    }
  }
 // use our XML HTTP Request object to send a get to our content php. 


}
</script>

そして、これは mysql から読み込まれる選択ドロップ リスト メニューの php コードです。

        <?php

$link = mysql_connect('localhost', 'root', '3250');
mysql_select_db('shopping', $link);

$sql = "select * FROM category";

$result = mysql_query($sql);

echo "<select name=\"muppetname\" onchange=\"changeContent(this.value)\">";

while ($ary = mysql_fetch_array($result)){

    echo "<option value=\"" . $ary['category']  . "\">" . $ary ['category']  . "</option>";
}

echo "</select>";


?>

<?php


mysql_close($link);

?>

私の次のステップは、カテゴリと呼ばれるドロップリストから選択したカテゴリの 1 つの mysql への挿入を作成し、別のテーブル名「add_product」および列名「category」に挿入することです。

<?php
$categories_list = "";
$sql = mysql_query("SELECT * FROM category ORDER BY category ASC");
$productCount = mysql_num_rows($sql); // count the output amount
if ($productCount > 0) {
    while($row = mysql_fetch_array($sql)){ 
             $id = $row["id"];
             $category_name = $row["category"];
             $categories_list .= "Category ID #:  &nbsp; $id - <strong>$category_name</strong> &nbsp; &nbsp; &nbsp; &nbsp;  <br /><br />";
    }
} else {
    $categories_list = "You have no categories listed in your database yet";
}
?> 

mysqlステートメントコードへの挿入を修正するのに役立つ人はいますか?

4

0 に答える 0