0byt3m1n1
Path:
/
home
/
k74ns2xygros
/
www
/
globetech
/
cms
/
[
Home
]
File: otpprocess.php
<?php session_start(); $rno = $_SESSION['otp']; $phone = $_SESSION['phone']; $urno = $_POST['otpvalue']; if (!strcmp($rno, $urno)) { unset($_SESSION['otp']); // session_unset(); $_SESSION['msg'] = "OTP Verified Successfully. Plase fill the form carefully."; $_SESSION['phone'] = $phone; // header("Location: select_zone.php"); header("Location: registration.php"); } else { $_SESSION['msg_err'] = "OTP does not not Match! Plase enter correct otp."; header("Location: otp.php"); } ?>