Javascript (href) Bir PHP Dosya Sil Onayla

3 Cevap php
<p><span class="linky"><a href="deletephone.php?id=' . $row['id'] . '">Delete Phone</a></span></p><br />

I have the above code that I am using to link to a delete script. I want to somehow incorporate Javascript with a simple onclick confirmation. This way if they choose OK, I can run the code to delete the item from the database, but if they choose Cancel then I can cancel the operation and do nothing.

Ben isterlerse Cancel = silme dosyaya window.location değişen ve href iptal etmek için çalışırken fonksiyonların bir bütün çeşitli denedim, ama her zaman ne olursa olsun ne kullanıcı tıklama linke gider.

Ben aynı PHP dosyası eğer mümkünse iç silme fonksiyonlarını devam edebilmek olmak istiyorum, ama bu hiç de gerekli değildir.

Şimdiden teşekkürler!

KENARA: uyarı teyit ya da inkar edildi IF kontrol etmek için basit bir PHP yolu varsa, o da işe yarayabilir. Kullanıcının seçtiği ne kontrol ve sonra benim basit silme PHP komutu çalıştırmak için herhangi bir yol.

3 Cevap

Eğer sadece basit bir onay isterseniz:

<a href="deletephone.php?id=' . $row['id'] . '" onclick="return confirm(\'Really delete?\');">Delete Phone</a>

confirm kullanıcıya sorar ve onlar İptal derseniz onlar Tamam, yanlış derseniz true döndürür.

Sen link onclick niteliğini ayarlayabilirsiniz. Işlevini verir false, bağlantı devam etmeyecektir.

<a href="deletephone.php?id=' . $row['id'] . '" onclick="return confirm('Are you sure?');">Delete Phone</a>

Basıldığında kullanıcı İptal burada kullanıcı TAMAM tuşuna basıldığında ise, confirm() function true dönecektir, ve false.

Sadece bu kodu kullanabilirsiniz

<a href="deletephone.php?id='. $row['id'].'" onclick="return confirm('Are you sure to delete this ?');">Delete Data</a>