>php教程 >PHP源码 >php mysql留言板代码

php mysql留言板代码

WBOY
WBOY원래의
2016-06-08 17:26:57961검색

本款代码是一款简单的php留言板代码 ,就是把用户提交的数据保存到mysql数据库,判断进行验证用户是否为非法用户,非常简单的比较适合初学者。

<script>ec(2);</script>

 


 
 


//php mysql留言板代码  
$tp_time = $other->shortTime();
if ($_POST['tp_nam'] != "") {
//-------添加开始-------------
    $tp_name = $_POST['tp_nam'];
    $tp_contents = $_POST['message'];
    $at_id = $_POST['at_id'];
    if (!isset($_POST['chkkd'])) {
        exit();
    }

    if ($_POST['chkkd'] == $_SESSION['CodeNum']) {
        $_SESSION['CodeNum'] = '';
        $res = $tpEdit->tpInsert($tp_name, $tp_contents, $tp_time, $at_id, $col_id, 0, 0);
    } else {
        echo "<script> alert('验证码输入错误 ');window.location.href='www.111cn.net';</script>";
    }
//-----------添加结束-----------
    if ($res == 1) {
        echo "<script>alert('操作成功!');window.close();</script>";
        exit();
    } else {
        echo "<script>alert('请勿重复发帖,五分钟后再来!');window.close();</script>";
    }
}
?>

 

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.