S
strutsng
I want to clarify the concept of submitting the form to the web server.
PHP is just an example here, it applies to any web programming
languages.
On page1.php,
<form name="myform" action="otherpage.php" method="post">
means 2 steps here:
1) submit the form called "myform" on page1.php to the web server using
HTTP POST method.
2) open otherpage.php
Also, otherpage.php can be page1.php itself, that means post the page
to itself, or this is called POST BACK.
Is that correct? Please advise & comment.
Thanks!!
PHP is just an example here, it applies to any web programming
languages.
On page1.php,
<form name="myform" action="otherpage.php" method="post">
means 2 steps here:
1) submit the form called "myform" on page1.php to the web server using
HTTP POST method.
2) open otherpage.php
Also, otherpage.php can be page1.php itself, that means post the page
to itself, or this is called POST BACK.
Is that correct? Please advise & comment.
Thanks!!