Blogger Information
Blog 27
fans 2
comment 0
visits 19604
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
POST---PHP九期线上班
一丁
Original
618 people have browsed it

1.POST传值

HTML代码:

实例

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>POST发送数据</title>
</head>
<body>
<form action="form.php" method="post">
    <p><label for="title">标题</label>
        <input type="text" name="title">
    </p>
    <p><label for="content">内容</label>
        <textarea name="content" rows="10" cols="30"></textarea>

    </p>
    <p>
        <button>提交</button>
    </p>
</form>
</body>
</html>

运行实例 »

点击 "运行实例" 按钮查看在线实例


PHP代码:

实例

<?php
$t=$_POST['title'];
$c=$_POST['content'];
echo '提交成功','<br>';
echo '标题:',$t,'<br>';
echo '内容',$c;

运行实例 »

点击 "运行实例" 按钮查看在线实例

image.png



image.png



手写核心代码:

image.png

Correcting teacher:查无此人查无此人

Correction status:qualified

Teacher's comments:下次多手写点,手写是为了让你练习记录的。
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post