Mustafa1379 adlı üyeden alıntı: mesajı görüntüle
Mesela post ile konu ve mesaj gönderdim bu ikisini boş mu diye kontrol ettirmek istiyorum empty ile

if($_POST){
    try {
      
        $konu = $_POST['konu'] ?? '';
        $mesaj = $_POST['mesaj'] ?? '';
      
        if (empty($konu))
            throw new \Exception('Lütfen Konu alanını doldurunuz.');

        if (strlen($mesaj) < 5)
            throw new \Exception('Lütfen Mesaj alanını doldurunuz. (Mininimum 5 harf)');
      
    }catch (\Exception $e){
        echo 'Hata: '.$e->getMessage();
    }
  
    echo 'Form başarıyla kayıt edilmiştir.';
  
}