v2.5.2
Giriş yap

Get değeri boşken error_log

resat
223 defa görüntülendi

Merhaba arkadaşlar, sayfa ilk yüklendiğinde get kısmında errot yada status olmadığı için error_log dosyası oluşturuyor. Bu hatayı nasıl aşabilirim.

PHP Notice: Undefined index: productDelete in /home/soffamob/public_html/purchase-list.php on line 4

    <?php 
  if ($_GET['status']=='error'){ ?>
    <div class="alert alert-danger"><i class="fa fa-times fa-fw"></i> Hata Oluştu Lütfen Tekrar Deneyiniz.</div>
  <?php } elseif ($_GET['status']=='success'){ ?>
    <div class="alert alert-success"><i class="fa fa-check fa-fw"></i> İşlem Başarılı Bir Şekilde Gerçekleşmiştir.</div>
  <?php } ?>
Cevap yaz
Cevaplar (1)
qplot
624 gün önce
if(isset($_GET['status']) && ($_GET['status']=='error')) {