sweetalert2 tavsiye ederim Örnek

https://sweetalert2.github.io/#examples

kısmına

<script></script>


PHP örnekleme:


//error için için
echo "
<script>
swal({
type: 'error',
title: 'Hata Başlığı',
text: 'Hata yazısı'
})
</script>
";

// Success için

echo "
<script>
swal({
type: 'success',
title: 'Başarılı',
text: 'Tebrikler işlem başarılı'
})
</script>
";

// info için

echo "
<script>
swal({
type: 'info',
title: 'Bilgi',
text: 'bu bir bilgi mesajıdır'
})
</script>
";