表单php

作者: kangshuaibo | 来源:发表于2018-04-23 09:29 被阅读0次

    html文件中布局一个简单的表单,提交数据
    html如下

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <body>
    
    <form action="text2.php" method="post">//表单 使用action与php连接
        Name: <input type="text" name="name"><br>
        E-mail: <input type="text" name="email"><br>
        <input type="submit">
    </form>
    
    </body>
    </html>
    

    /////////////////////////////////////////////////////////////////////////////////////////
    php接受数据如下

    <!DOCTYPE html>
    <html lang="en">
    <head>
        <meta charset="UTF-8">
        <title>Title</title>
    </head>
    <body>
    
    Welcome <?php echo $_POST["name"]; ?><br>//使用$_POSE全局变量来接收数据
    Your email address is: <?php echo $_POST["email"]; ?>
    
    </body>
    </html>
    
    

    $_GET 是通过 URL 参数传递到当前脚本的变量数组。

    $_POST 是通过 HTTP POST 传递到当前脚本的变量数组。

    在html中的form中要写明method="get"还是method="post"

    相关文章

      网友评论

          本文标题:表单php

          本文链接:https://www.haomeiwen.com/subject/jzfflftx.html