i'm doing a form submit. i've got these 2 files. 1) php html form 2) php file which receives post data from #1
the process will have to be like this: 1) user go to php html form, key in some data and click submit to post data. 2) the php file will receive the post data and process it. 3) after processing the data, i would need the php file to return the post data back to the php html form and populate the textbox.
how can i do this? i understand we can normally post to PHP_SELF and process it in the same php html form but i would like to use a separate php file to receive and process post data.