File "edit_testimonial-20260113174703.php"
Full Path: /home/ovanhxso/public_html/panel/admin/include/edit_testimonial-20260113174703.php
File size: 6.08 KB
MIME-type: text/x-php
Charset: utf-8
<?php
session_start();
include '../assets/constant/config.php';
try {
$conn = new PDO("mysql:host=$servername;dbname=$dbname", $username, $password);
$conn->setAttribute(PDO::ATTR_ERRMODE, PDO::ERRMODE_EXCEPTION);
} catch (PDOException $e) {
echo "Connection failed: " . $e->getMessage();
}
?>
<?php include('include/sidebar.php'); ?>
<!-- Top Bar End -->
<?php include('include/header.php'); ?>
<div class="page-content-wrapper ">
<div class="container-fluid">
<div class="row">
<div class="col-sm-12">
<div class="page-title-box">
<div class="btn-group float-right">
</div>
<h4 class="page-title">Edit Testimonial</h4>
</div>
</div>
<div class="clearfix"></div>
</div>
<!-- end page title end breadcrumb -->
<div class="row">
<div class="col-lg-12">
<div class="card">
<div class="card-body">
<div class="tab-content">
<div class="tab-pane active p-3" id="home" role="tabpanel">
<form name="myform" action="app/testimonial_crud.php" class="row" method="POST" enctype="multipart/form-data" onsubmit="return validation()" id="testimonial" id="testimonial">
<?php
$stmt = $conn->prepare("SELECT * FROM `testimonial` WHERE id='" . $_POST['id'] . "' ");
$stmt->execute();
$record = $stmt->fetchAll();
foreach ($record as $key) { ?>
<input class="form-control" type="hidden" name="id" value="<?php echo $key['id']; ?>">
<div class="form-group col-md-6">
<label class="control-label">Name*</label>
<input class="form-control" type="text" name="name1" value="<?php echo $key['name1'] ?>" required="" pattern="^[a-z A-Z 0-9 ]+$" />
</div>
<div class="form-group col-md-6">
<label class="control-label">Designation*</label>
<input class="form-control" type="text" name="designation" value="<?php echo $key['designation'] ?>" required="" pattern="^[a-z A-Z 0-9 ]+$" />
</div>
<div class="form-group col-md-6">
<label class="control-label">Existing Photo</label><br>
<?php
// Read the image file and encode it to Base64
$imagePath = "../assets/images/" . $key['photo']; // Path to your image file
$imageData = file_get_contents($imagePath);
$base64Image = base64_encode($imageData);
?>
<input type="hidden" value="<?php echo $key['photo'] ?>" name="old_photo_img">
<img class="img-fluid" src="data:image/jpeg;base64,<?php echo $base64Image; ?>" style="width:100px;height:auto;"><br>
</div>
<div class="form-group col-md-6">
<label class="control-label">Photo*<span class="text-danger">(file size must be less than 500 x 400 pixel)</span></label>
<input class="form-control" type="file" name="photo" accept=".jpg,.jpeg">
</div>
<div class="form-group col-md-6">
<label class="control-label">Comment*</label>
<textarea class="form-control" type="text" name="comment" id="ckeditor" ><?php echo $key['comment'] ?></textarea>
</div>
<div class="form-group col-md-12">
<button class="btn btn-primary" type="submit" name="update" onclick="testimonial()">Update</button>
</div>
<?php } ?>
</form>
</div>
</div>
</div>
</div><!--end card-->
</div><!--end col-->
</div><!--end row-->
</div> <!-- Page content Wrapper -->
</div> <!-- content -->
<?php include('include/footer.php'); ?>
<script>
function validateFileInput(inputId) {
var fileInput = document.getElementById(inputId);
var filePath = fileInput.value;
var allowedExtensions = /(\.jpg|\.jpeg|\.png)$/i;
if (!allowedExtensions.exec(filePath)) {
alert('Invalid file type! Please upload a JPG, JPEG, or PNG image.');
fileInput.value = '';
return false;
}
return true;
}
</script>
<!-- Example usage for the first input -->
<script>
function validateFirstInput() {
return validateFileInput('edit_service').photo;
}
</script>
<!-- Example usage for the second input -->
<script>
function validateSecondInput() {
return validateFileInput('edit_service').banner;
}
</script>
<script>
function testimonial() {
jQuery.validator.addMethod("alphanumeric", function(value, element) {
return this.optional(element) || /^(?=.*[a-zA-Z])[a-zA-Z0-9\s!@#$%^&*()_-]+$/.test(value);
}, "Please enter alphabet characters only");
jQuery.validator.addMethod("lettersonly", function(value, element) {
// Check if the value is empty
if (value.trim() === "") {
return false;
}
return /^[a-zA-Z\s]*$/.test(value);
}, "Please enter alphabet characters only");
$('#testimonial').validate({
rules: {
name1: {
required: true
},
designation: {
required: true
},
comment: {
required: true
}
},
messages: {
name1: {
required: 'Please enter your name'
},
designation: {
required: 'Please enter your designation'
},
comment: {
required: 'Please enter your comment'
}
},
submitHandler: function(form) {
// Submit the form
form.submit();
}
});
};
</script>