Jump to content

tech93

Members
  • Posts

    1
  • Joined

  • Last visited

Everything posted by tech93

  1. Hi, Below example works for the below link:- https://www.w3schools.com/php/php_forms.asp But If i try to use different form name and some other field names it does not work as i can simply enter the values but unable to display them. not sure what is wrong with my scripts here:- script for l2.php:- <!DOCTYPE html> <html> <head> <title>Form</title> </head> <body> <h1>The input name attribute</h1> <form> <form action=" " method="get"> <label for="URL">A Media URL:</label> <input type="text" id="URL" name="URL"><br><br> <label for="Image">An Image:</label> <input type="text" id="Image" name="Image"><br><br> <label for="Title">Title:</label> <input type="text" id="Title" name="Title"><br><br> <input type="submit" value="Submit"> </form> </body> </html> Script for action_page.php <!DOCTYPE html> <html> <head> <title>Form</title> </head> <body> <h1>The input name attribute</h1> <form> <form action="action_page.php" method="get"> <label for="URL">A Media URL:</label> <input type="text" id="URL" name="URL"><br><br> <label for="Image">An Image:</label> <input type="text" id="Image" name="Image"><br><br> <label for="Title">Title:</label> <input type="text" id="Title" name="Title"><br><br> <input type="submit" value="Submit"> </form> </body> </html> Thanks..
×
×
  • Create New...