Tutorial Title: External Page Submission/Submission to another page Course: PHP Instructor: Muhammad Samim 1. Submitting action from one page to another page 2. First make one page with name page1.php <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Document</title> </head> <body> <form action="page2.php" method="post"> //It will direct from page1.php to page2.php <br><input type="text" placeholder="Email" name="anyNameForEmail"> <br><input type="password" placeholder="Password" name="anyNameForPassword"> <br><input type="submit" name="click"> </form> </body> </html> 3. Second make another file with name page2.php <?php if(isset($_POST["click"])){ $anyNameO...