Jump to content

emmajohnson

New Members
  • Posts

    2
  • Joined

  • Last visited

emmajohnson's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. <form> First name: <input type="text" name="firstname"><br> Last name: <input type="text" name="lastname"> </form> for <input type="text"> that means the type of data you are going to enter is a "text type". and in ==== (First name: <input type="text" name="firstname">) firstname is the name of that text field as you have labeled it First name. same as last name ====(Last name: <input type="text" name="lastname">)here label is last name and name of the related text field is last name .. to identify both the text boxes we use different names... ========================================================================== <form> Password: <input type="password" name="pwd"> </form> here "pwd is the name of the password field (i.e. input type="password") you can use any name you want to use ..
  2. 301 redirect is the most efficient method for webpage redirection. It's not that hard to implement and it should preserve your search engine rankings for that particular page. If you have to change file names or move pages around, it's the good option. The code "301 redirect" is interpreted as "moved permanently".
×
×
  • Create New...