Blame | Last modification | View Log | RSS feed
<?php#揭密資料$post=json_decode(urldecode(base64_decode($_POST["formData"])));#驗證密碼通過if($_SESSION["authenticate.verifyCodeAndFormData.randomCode"]===$post->randomCode){#加上狀態識別碼$post->status="true";#迴應jsonecho json_encode($post);}//if end#反之不通過else{#加上狀態識別碼$post->status="false";#迴應jsonecho json_encode($post);}#else end?>