0xV3NOMx
Linux ip-172-26-7-228 5.4.0-1103-aws #111~18.04.1-Ubuntu SMP Tue May 23 20:04:10 UTC 2023 x86_64



Your IP : 18.226.170.19


Current Path : /var/www/html/univadmin/regform/php/
Upload File :
Current File : /var/www/html/univadmin/regform/php/resendotp.php

<?php
session_start();
include("/var/www/config.php");
// include("database.php")
	
	
	$servername = "logisys.cluster-cv9maxyrxjgg.ap-south-1.rds.amazonaws.com";
	$username   = "admin";
	$password  = "T0g3th3r@all";
	$database = "logisys3_reva";
	    
	$conn = new  mysqli($servername,$username,$password,$database);
	if(!$conn) 
	{
        die("Connection failed: " . mysqli_connect_error());
	}
include ('../../../sms/sendsmsapiv1.php');

error_reporting(E_ALL);
ini_set('display_errors', 'on');

$fmobile = $_POST["fmobile"];
$pwd = $_POST['pwd'];

$query = "select * from corpuser where fmob='{$fmobile}'";
$result = mysqli_query($conn,$query);
$row = mysqli_fetch_assoc($result);
$count = mysqli_num_rows($result);

if($count == 1){
	date_default_timezone_set('Asia/Kolkata');
	$time =  date("h:i A");
	$otp = rand(1000, 9000);
	$smsotp = "From $database: Dear Student, OTP for Registration is $otp. sent at {$time} - Uniclare";

    $sms = new SMS('026', 'OTP');
	$sms->sendIndvidualSms($fmobile, $smsotp, '900', 'PGET');

    $smsresp = 'Sent';
	$row["sms"] = $smsresp;

	$query = "update corpuser set fotp = '{$otp}' fotptime=now() where fmob='{$fmobile}'";
	$result = mysqli_query($conn, $query);

	if($result){
		$row['status'] = 'success';
	}else{
		$row['status'] = 'error';
	}
	echo json_encode($row);
}else{
	$row['status'] = 'invalid';
	echo json_encode($row);
}

?>