drxv39706 2014-12-19 05:59
浏览 9
已采纳

当用户单击发送到其电子邮件的链接时。 删除数据库中的记录[关闭]

The scenario : the user enter and order. A confirmation email is sent with a link to cancel the order. I would like to cancel the order by just clicking on the link without the user doing any other operation. is this possible?

  • 写回答

2条回答 默认 最新

  • dongsheng1698 2014-12-19 06:08
    关注

    Yes it is possible and here's how you do it. Let's say the following link is the one you sent to his/her email

    http://www.example.com/?orderId=12567544356&cancel=1
    

    In your PHP code,

    if(isset($_GET['cancel']) && isset($_GET['orderId']))
    {
      //you may also want to check the values..
      //then delete the record from the database table ..
    }
    

    [Edit] The order Id can be any value that you want to send as an email. For example,your code before sending the email might look like the following

    $query = "SELECT orderId FROM Order WHERE user_id = $current_user_id";
    // ... you will run the query
    $orderId = $row['orderId'];
    // then when you send your email, you will prepare the link the following way
    $cancelOrderLink = "http://www.example.com/?orderId=$orderId&cancel=1";
    // send it 
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论
查看更多回答(1条)

报告相同问题?

悬赏问题

  • ¥15 关于#matlab#的问题:在模糊控制器中选出线路信息,在simulink中根据线路信息生成速度时间目标曲线(初速度为20m/s,15秒后减为0的速度时间图像)我想问线路信息是什么
  • ¥15 banner广告展示设置多少时间不怎么会消耗用户价值
  • ¥16 mybatis的代理对象无法通过@Autowired装填
  • ¥15 可见光定位matlab仿真
  • ¥15 arduino 四自由度机械臂
  • ¥15 wordpress 产品图片 GIF 没法显示
  • ¥15 求三国群英传pl国战时间的修改方法
  • ¥15 matlab代码代写,需写出详细代码,代价私
  • ¥15 ROS系统搭建请教(跨境电商用途)
  • ¥15 AIC3204的示例代码有吗,想用AIC3204测量血氧,找不到相关的代码。