PHP de İşlem Sonrası Nasıl Alert Verebilirim? |
3 Mesajlar | 604 Okunma |
$().toastmessage({
text : 'Ashish Blog',
sticky : true,
position : 'top-right',
type : 'success',
close : function () {console.log('toast is closed ...');}
});
<script></script>
$alert = $this->session->userdata("alert");
if ($alert) {
if ($alert["type"] === "success") { ?>
<script>
iziToast.success({
title: 'Başarılı',
message: 'Görünmesini istediğiniz yazı',
position: 'topCenter'
});
</script>
<script>
iziToast.danger({
title: 'Hata!',
message: 'Görünmesini istediğiniz yazı',
position: 'topCenter'
});
</script>
} ?>