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.118.128.17


Current Path : /proc/thread-self/root/var/www/html/studentportal_test/
Upload File :
Current File : //proc/thread-self/root/var/www/html/studentportal_test/registration.php

<?php
include ("database.php");

$regno = $_POST['regno'];
$mobile = $_POST['mob'];
$emailid = $_POST['email'];
$passwd = $_POST['passwd'];
$univcode = $_POST['univcode'];

$query = "update masuser set factive = 'T', fregno = '{$regno}', 
			fpasswd = '{$passwd}', funivcode = '{$univcode}',
			fcategory = '{$category}', ffeetype = '{$feetype}'
			where fmobileno = '{$mobile}' and femail = '{$emailid}'";
//var_dump($query);
$result = $conn->query($query);
//var_dump($result);
if($result)
{
	echo "success";
}
else
{
	echo "failure";
}


?>