我怎么知道在哪里发送我的网站上购买的物品
答
当用户在网站上购买东西时,所有者将获得用户在字段中输入的地址-_- HTML页面将通过POST将字段的内容发送到PHP文件上服务器。
形式:
<form action="post.php">
First name:<br>
<input type="text" name="item" value="the item that you buy"><br>
Last name:<br>
<input type="text" name="adress" value="your adress"><br><br>
<input type="submit" value="Submit">
</form>
php文件的例子:
<?php
$item=$_POST['item'];
$user_adress=$_POST['adress'];
echo $item;
echo $user_adress;
?>
为您的手机上的通知,您可以创建谁显示团购信息的页面。但在您的手机上获得推送通知将更难做
您发布的问题是广泛的回答方式。 – Felix