phpstudy1--php file Gets the parameters of the HTML submission

Source: Internet
Author: User

Example code:

Submit.html

1 <!DOCTYPE HTML>2 <HTML>3     <Head>4         <MetaCharSet= "UTF-8">5         <title></title>6     </Head>7     <Body>8 <formID= "Form1"name= "Form1"Method= "POST"Action= "getsubmitdata.php">9Name:<inputname= "Name"type= "text" >TenMobile Number:<inputname= "Phone"type= "text"maxlength= "One"> One <inputtype= "Submit"name= "Submit"value= "Submit" /> A </form> - </Body> - </HTML>

getsubmitdata.php

 1  <? php  2   $name  = $_post  [' Name '  3   $phone  = $_post  [' Phone '  4  echo  ' name: '.  $name   5  echo  ' <br> ' ; 6  echo  ' phone number: '.  $phone   7 ? 

Sample Analysis:

1. This example shows how the PHP script obtains the parameters of the HTML submission and prints the output, which is the most basic way for HTML pages to pass values like PHP scripts.

2. This example delays the use of the basic composition of PHP pages, variables, variable assignments, $_post[key] get parameters, and so on.

phpstudy1--php file Gets the parameters of the HTML submission

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.