You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
die("Failed to connect to MySQL: " . mysqli_connect_error());
}
$sql="Update studentsettings set Theory=".$_GET["v1"].",Programming=".$_GET["v2"].",Placement=".$_GET["v3"].",Prerequisite=".$_GET["v4"].",Problematic=".$_GET["v5"]." where RollNo='".$_GET["RollNo"]."'";
mysqli_query($con,$sql);
echo mysqli_error($con);
$sql="Update studentdetails set Active=1 where RollNo='".$_GET["RollNo"]."'";