网站首页  汉语字词  英语词汇  考试资料  写作素材  旧版资料

请输入您要查询的考试资料:

 

标题 php防止post重复提交数据的简单例子
内容
    在某帝国面试的时候问题了这个题: 怎么处理post提交重复的问题, 后来跟@暖阳交流,他说记录时间,我没有明白,我想的是用session在表单页面记录下,然后提交页面判断,如果相等则视为成功,并清空session,但有个问题是如果表单页面是html的呢,乍办?要不调个php验证的页面?类似验证码的功能. 还有的说用 header头设置过期时间...但没试.以下是我php写的,经测试可用.
    代码如下:
    <?php
    //开启session
    session_start();
    //如果有提交标识
    if(isset($_get['action']) && $_get['action'] === 'save'){
    //如果有session且跟传过来的值一样才算提交
    if(isset($_session['__open_auth']) && isset($_post['auth']) && $_session['__open_auth'] == $_post['auth']){
    print_r($_post);
    $_session['__open_auth'] = null;//清空
    } else {
    //走起
    header(location: post.php);
    }
    exit();
    }
    //授权
    $auth = $_session['__open_auth'] = time();
    ?>
    <!doctype html>
    <html>
    <head>
    <meta charset=utf-8>
    <title>post</title>
    </head>
    <body>
    <form action=post.php?action=save method=post>
    <ul>
    <li>
    <input type=hidden name=auth value=<?php echo $auth;?>>
    <input type=text name=username>
    </li>
    <li>
    <input type=password name=userpass>
    </li>
    <li>
    <input type=submit value=走起>
    </li>
    <li>
    <?php echo time(); ?>
    </li>
    </ul>
    </form>
    </body>
    </html>
随便看

 

在线学习网考试资料包含高考、自考、专升本考试、人事考试、公务员考试、大学生村官考试、特岗教师招聘考试、事业单位招聘考试、企业人才招聘、银行招聘、教师招聘、农村信用社招聘、各类资格证书考试等各类考试资料。

 

Copyright © 2002-2024 cuapp.net All Rights Reserved
更新时间:2025/5/25 3:32:27