Answers for "how to put success message after form submit php"

1

display success message after form submit in php

<div class="alert alert-success">
  <strong>Success!</strong> Indicates a successful or positive action.
</div>

<div class="alert alert-success alert-dismissible">
  <a href="#" class="close" data-dismiss="alert" aria-label="close">&times;</a>
  <strong>Success!</strong> Indicates a successful or positive action.
</div>
Posted by: Guest on May-24-2021
0

php alert message after submit

// Add alert script in php like
 echo "<script>alert('data saved succesfully');</script>";
Posted by: Guest on March-26-2022

Code answers related to "how to put success message after form submit php"

Browse Popular Code Answers by Language