Konu
php select list yardım
14-05-2013, 11:17:26
#3
SNCR_1
<?php
$veri = $_GET["select"];
$ara = mysql_query("select * from tablo adi where kan = $veri");
while($bul = mysql_fetch_array($ara))
{
echo '$bul[Ad]';
echo '$bul[Soyad]';
}
?>