ismailke adlı üyeden alıntı

Get ile aldığın id yi başvuru detay sayfasında veritabanında başvuru tablon ne ise where komutu ile detayını listeletebilirsin.
Örnek
$gelen_id = get('id');
$basvuru_detay = $db->select('basvurular')
->where('basvuruid',$gelen_id)
->run();
foreach($basvuru_detay as $basvurudetay){
?>












Bende PDo olarak sunem :D
$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){
?>












Kardeş ad aynı meslek bölümü aynı (Sağlık ) :D hpşgelmişsin :)