Hi,
I insert into database with Submit button in same page. After clicking submit, i want whole page to be refreshed. How can i do it? Code is below and where can i add something to refresh after insert.
Thanks
<form name="form1" method="post" action="">
.....
<input type="submit" name="Submit" value="Add" onClick="javascript: form.action='insert.php';">
</form>
<?php
if ($_POST["Submit"] == "Add") {
....inserting data in here
}
?>