while($sonuc= mysql_fetch_array($sor)){
$id = $sonuc['id'];
Son Başvuru : Bilgileri Gör
İlgili id'deki verileri nasıl açarım |
4 Mesajlar | 754 Okunma |
while($sonuc= mysql_fetch_array($sor)){
$id = $sonuc['id'];
Son Başvuru : Bilgileri Gör
$gelen_id = get('id');
$basvuru_detay = $db->select('basvurular')
->where('basvuruid',$gelen_id)
->run();
foreach($basvuru_detay as $basvurudetay){
?>
$gelen_id = get('id');
$basvuru_detay = $db->select('basvurular')
->where('basvuruid',$gelen_id)
->run();
foreach($basvuru_detay as $basvurudetay){
?>
$gelen_id = get('id');
try
{
$db= new PDO("mysql:host=localhost;dbname=dbadı;charset=utf8","kullanici","sifre");
}
catch(PDOException $h)
{
echo $h->getMessage();
}
$sql="select * from basvurular where id=:idal order by id asc limit 1";
$sor=$db->prepare($sql);
$sor->execute(array("idal"=>$gelen_id));
$basvuru_detay=$sor->Fetch(PDO::FETCH_ASSOC);
foreach($basvuru_detay as $basvurudetay){
?>