I have a form which actions against a php file. Once the form is completed and the data is inserted into the databse, it want it to display "Awesome". Awesome is being displayed but is above the form. I want it to replace the form and display awesome. How do i do that?
Thank You.
if($done )
{
echo "Awesome";
}
else
{
echo "Error";
}