Skip to content

Instantly share code, notes, and snippets.

@RajeshPatadiya
Forked from Shibly/sweetalert.php
Created January 23, 2017 10:39
Show Gist options
  • Save RajeshPatadiya/2e393d1f7932e49d91cca8a07eed8a3b to your computer and use it in GitHub Desktop.
Save RajeshPatadiya/2e393d1f7932e49d91cca8a07eed8a3b 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; ?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment