我想要问的是一个网址,任何人都可以在其上发布变量。如何创建一个PHP页面,它可以接受通过post发送的变量,通过curl或form post等发送。
我可以只使用
接受通过post发送的变量$_POST['varible']
这样如果有人向我的网址发布'变量',我是否能够获得
答案 0 :(得分:2)
<?php
if (isset($_POST['submit'])) { //Check if the submit button is pressed.
$field1 = $_POST['field1']; //Take the post data of "field1" from the form.
$field2 = $_POST['field2']; //Take the post data of "field2" from the form.
echo "$field1 $field2"; //Echo the fields.
}
?>
<form method="post">
<input type="text" name="field1" placeholder="Field 1"><br>
<input type="text" name="field2" placeholder="Field 2"><br>
<input type="submit" name="submit" value="Send Data">
</form>
答案 1 :(得分:1)
是的,您可以使用$ _POST.form接受该值。使用您所说的内容收到发布到php的数据