App下载

demo_global_post 在线工具

demo_global_post 在线工具

<form method="post" action="https://www.w3cschool.cn/statics/demosource/demo_php_request.php?action=post">
Name: <input type="text" name="fname">
<input type="submit">
</form>

<?php
if(isset($_POST['fname'])){
	
$name = $_POST['fname']; 
echo $name; 
}
运行结果