Advertisement
mvsp

message.php

Jul 7th, 2021
146
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.24 KB | None | 0 0
  1. <?php
  2. //Sessão
  3. session_start();
  4. if(isset($_SESSION['mensagem'])): ?>
  5.  
  6.    
  7. <script>
  8.     //Mensagem
  9.     window.onload = function() {
  10.         M.toast({html: '<?php echo $_SESSION['mensagem']; ?>'});
  11.     };
  12.  
  13. </script>
  14. <?php
  15. endif;
  16. session_unset();
  17. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement