I Have a php form page where users fill the data and process page to add data to database, Its working fine, But problem is I need the results from process page to be displayed back on to my main page? How to get results back to main page?
Share
In the
form‘sactionattribute, set the path to$_SERVER['PHP_SELF']rather than processing file. This way, form will submit to same page where you can process it.