While () dinamik liste sonuçları üzerinden onay kutusu değerleri istediğiniz - Need php kod mantığı

0 Cevap php

I have a working dynamic image and text list page that shows results in table form. I've added check boxes (name = "select") to each item in the list results with the (relevant) code below. I want to filter the corresponding art_id's from just the ones with select ="1"

echo "<tr align=\"left\" padding=\"1\"> 
                <td align=\"left\" width=\"0%\" height=\"120\" >
    <a href=\"$path$image_link\">
              <img src=\"$path$image_link\" height=\"85\" width=\"85\"></a><br />
    </td>
    <td align=\"left\" width=\"0%\">
//CHECKBOXES ADDED HERE  <input name=\"select\" type=\"checkbox\" value=\"1\" >
    <input name=\"art_id\" type=\"hidden\" value=\"$art_id\" />
    </td>

Sonra başka bir sorgu / eko için başka bir sayfaya $ _POST yoluyla gönderilen istiyorum. Ben 2. sayfadaki değişkenler kapma için böyle bir şey de tahmin:

$t_art_id =  $_POST["art_id"], ["select ='1'"];

Doğru bir yaklaşım üzerinde herhangi bir iyi fikir seviniriz.

Thanks Allen

0 Cevap