Today, We want to share with you how to use sweet alert in php?.In this post we will show you sweet alert php mysql, hear for how to use sweetalert2 in php we will give you demo and example for implement.In this post, we will learn about Laravel Sweet Alert AJAX CRUD Tutorial with an example.
Create custom alert with sweetAlert jQuery Example
Step 1. Make a file Form.html with the bellow code:
<form role="form" id="do_submit-form" method="post"> <label for="name">Name</label> <input type="text" placeholder="Eneter Your Full Name" name="name" required> <label for="email">Email</label> <input type="email" placeholder="Eneter Your Your Email" name="email" required> <label>Comments</label> <textarea name="message" placeholder="Your Comments" rows="9"></textarea> <button type="submit" class="btn">Send</button> </form>
step 2. Make a file called main.js with the bellow code:
<script src="https://cdn.bootcss.com/jquery/3.3.1/jquery.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery.form/4.2.2/jquery.form.js"></script> <script src="https://unpkg.com/sweetalert/dist/sweetalert.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('#do_submit-form').on('submit',function(e) { $.ajax({ url:'do_submit.php', data:$(this).serialize(), type:'POST', success:function(data){ console.log(data); swal("¡Success!", "Comments sent!", "success"); }, error:function(data){ swal("Oops...", "Something went wrong :(", "error"); } }); e.preventDefault(); }); }); </script>
step 3 – create file do_submit.php with the following code:
<?php $to = '[email protected]' . "\r\n"; $subject = 'Welcome To Pakainfo'; $name = $_POST['nombre']; $email = $_POST['email']; $htmlContent = "************************************************** \r\n" . "Comments from you www.pakainfo.com! \r\n" . "************************************************** \r\n" . "Name: " . $name . "\r\n" . "E-mail: " . $email . "\r\n" . "Comments: " . $_POST["message"] . "\r\n"; $headers = "From: " . $name . "<" . $email . "> \r\n" . "Reply-To: " . $email . "\r\n" . "MIME-Version: 1.0" . "\r\n" . "Content-type:text/html;charset=UTF-8" . "\r\n"; mail($to, $subject, $htmlContent, $headers); ?>
I hope you get an idea about sweet alert with image.
I would like to have feedback on my infinityknow.com blog.
Your valuable feedback, question, or comments about this article are always welcome.
If you enjoyed and liked this post, don’t forget to share.