Skip to content

Instantly share code, notes, and snippets.

@Shibly
Last active March 3, 2021 11:38
Show Gist options
  • Save Shibly/1ed046ba17a79103d963 to your computer and use it in GitHub Desktop.
Save Shibly/1ed046ba17a79103d963 to your computer and use it in GitHub Desktop.
Show Flash Message On Codeigniter View using sweetalert
<?php if ($this->session->flashdata('flash_message')): ?>
<script>
swal({
title: "Done",
text: "<?php echo $this->session->flashdata('flash_message'); ?>",
timer: 1500,
showConfirmButton: false,
type: 'success'
});
</script>
<?php endif; ?>
@fazrisuhada007
Copy link

that is not working

Copy link

ghost commented Sep 17, 2020

text:<?php echo $this->session->flashdata('flash_message'); ?>,

@jdelmerie
Copy link

that is not working
Try this :

<script> Swal.fire({text: "<?php echo $this->session->flashdata('success'); ?>",timer: 1500,showConfirmButton: false,type: 'success'});</script>

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment