ok

Mini Shell

Direktori : /home2/selectio/public_html/pvmatricschool.com/dashboard/admin/
Upload File :
Current File : /home2/selectio/public_html/pvmatricschool.com/dashboard/admin/extra-photo-add.php

<?php require_once('header.php'); ?>

<?php
if(isset($_POST['form1'])) {
	$valid = 1;

    if(empty($_POST['caption'])) {
        $valid = 0;
        $error_message .= "Photo Caption Name can not be empty<br>";
    }

    $path = $_FILES['photo']['name'];
    $path_tmp = $_FILES['photo']['tmp_name'];

    if($path == '') {
    	$valid = 0;
        $error_message .= "You must have to select a photo<br>";
    } else {
    	$ext = pathinfo( $path, PATHINFO_EXTENSION );
        $file_name = basename( $path, '.' . $ext );
        if( $ext!='jpg' && $ext!='png' && $ext!='jpeg' && $ext!='gif' ) {
            $valid = 0;
            $error_message .= 'You must have to upload jpg, jpeg, gif or png file<br>';
        }
    }
    
    if($valid == 1) {

    	// getting auto increment id for photo renaming
		$statement = $pdo->prepare("SHOW TABLE STATUS LIKE 'tbl_photo'");
		$statement->execute();
		$result = $statement->fetchAll();
		foreach($result as $row) {
			$ai_id=$row[10];
		}

		// uploading the photo into the main location and giving it a final name
		$final_name = 'photo-'.$ai_id.'.'.$ext;
        move_uploaded_file( $path_tmp, '../assets/uploads/'.$final_name );

		// saving into the database
		$statement = $pdo->prepare("INSERT INTO tbl_photo (caption,photo,type) VALUES (?,?,?)");
		$statement->execute(array($_POST['caption'],$final_name,$_POST['type']));

    	$success_message = 'Photo is added successfully.';
    }
}
?>

<section class="content-header">
	<div class="content-header-left">
		<h1>Add Photo</h1>
	</div>
	<div class="content-header-right">
		<a href="arts-craft.php" class="btn btn-primary btn-sm">ARTS AND CRAFT</a>
		<a href="bharatham.php" class="btn btn-primary btn-sm">BHARATHAM</a>
		<a href="chess.php" class="btn btn-primary btn-sm">CHESS</a>
		<a href="scout.php" class="btn btn-primary btn-sm">SCOUT</a>
		<a href="silambam.php" class="btn btn-primary btn-sm">SILAMBAM</a>
		<a href="teakwondo.php" class="btn btn-primary btn-sm">TEAKWONDO</a>
		<a href="yoga.php" class="btn btn-primary btn-sm">YOGA</a>
	</div>
</section>


<section class="content">

	<div class="row">
		<div class="col-md-12">

			<?php if($error_message): ?>
			<div class="callout callout-danger">
			
			<p>
			<?php echo $error_message; ?>
			</p>
			</div>
			<?php endif; ?>

			<?php if($success_message): ?>
			<div class="callout callout-success">
			
			<p><?php echo $success_message; ?></p>
			</div>
			<?php endif; ?>

			<form class="form-horizontal" action="" method="post" enctype="multipart/form-data">
				<div class="box box-info">
					<div class="box-body">
						<div class="form-group">
							<label for="" class="col-sm-2 control-label">Photo Caption <span>*</span></label>
							<div class="col-sm-4">
								<input type="text" class="form-control" name="caption">
							</div>
						</div>
						
						<div class="form-group">
							<label for="" class="col-sm-2 control-label">Type <span>*</span></label>
							<div class="col-sm-4">
							    <select class="form-control" name="type">
							        <option value="ARTS AND CRAFT">ARTS AND CRAFT</option>
							        <option value="BHARATHAM">BHARATHAM</option>
							        <option value="CHESS">CHESS</option>
							        <option value="SCOUT">SCOUT</option>
							        <option value="SILAMBAM">SILAMBAM</option>
							        <option value="TEAKWONDO">TEAKWONDO</option>
							        <option value="YOGA">YOGA</option>
							    </select>
							</div>
						</div>
						
						
						<div class="form-group">
							<label for="" class="col-sm-2 control-label">Upload Photo <span>*</span></label>
							<div class="col-sm-4" style="padding-top:6px;">
								<input type="file" name="photo">
							</div>
						</div>
						<div class="form-group">
							<label for="" class="col-sm-2 control-label"></label>
							<div class="col-sm-6">
								<button type="submit" class="btn btn-success pull-left" name="form1">Submit</button>
							</div>
						</div>
					</div>
				</div>

			</form>


		</div>
	</div>

</section>

<?php require_once('footer.php'); ?>

Zerion Mini Shell 1.0