0

データベースから 2 つのテーブルをプルダウンしています。Table2からに行を追加する Javascript 関数がありますTable1。私がやろうとしているのはTable1confirm_trade.phpページからデータを取得してデータベースに入れることができるようにすることですが、その行をプルする方法がわかりません( item_id)。テーブルをフォームに配置すると、 を介してアクセスできると思いました$_POSTが、うまくいきません。ページを取得できるようにjquery行に識別子を追加する方法はconfirm?

jQuery 関数から追加された行は、item_id が必要な行です。

function addto(obj)
{

var $row = $(obj).parents("tr");
var $table = $("#tradee");
var item_id = $row.find(".item-id").text();
var item_name = $row.find(".item-name").text();
var item_desc = $row.find(".item-desc").text();

var newTR = $("<tr><td>"+item_id+"</td><td>"+item_name+
"</td><td>"+item_desc+"</td></tr>");
$table.append(newTR);

 }     

表 2:

   <div id='fixedDiv'> 
   <form action="confirm.php" method="post">        
   <table align="center" id="Table2">

    <tr><td>Other Item</td></tr>


    <?php while($rowi =$item->fetch_assoc())
    {?>

    <tr>
    <td>
        <?php echo $rowi['item_id']; ?>
    </td>
    <td>
        <?php echo $rowi['item_name']; ?>
    </td>
    <td><?php echo $rowi['item_description'];?></td>

    </tr>
    <?php } ?>

    <tr>
    <td><input type="submit" name="submit" value="Continue"/></td>
    </tr>
</table>
</form>
    </div>

    <br>

表1:

        <table align="center" id="Table1">
        <tr><th>item_id</th>
            <th>Cat_id</th>
            <th>Name</th>
            <th>Description</th>
        </tr>
    <?php while($row =$item_results->fetch_assoc())
    {?>
    <tr></tr>
    <tr>
    <td class="item-id"> <?php echo $row['item_id']; ?> </td>
    <td><?php echo $cat_id = $row['cat_id']; ?> </td>

        <td class="item-name"><?php echo $item_id = $row['item_name'];?></td>

        <td class="item-desc"><?php echo $item_descrip = $row['item_description'];?>
        </td>

        <td><input type="button" class="added" onclick="addto(this)" 
            value="Add" />
        <td><input type="button" class="removed" onclick="remove()" 
        value="Remove" >
        </td>

        </tr>
    <?php } ?>

    </table>
4

1 に答える 1