D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
shubmkcj
/
designpitara.com
/
admin
/
services
/
Filename :
add-service-last-level-copy.php
back
Copy
<?php include("../include/config.php"); include("../include/sessionhandle.php"); include("../include/header.php"); ?> <style> #my_services ul li:nth-child(5) { background-color: #eb6a4e; } #my_services ul li:nth-child(5) a { color: #fff; } #my_services ul li:nth-child(5) a:hover { background-color: #eb6a4e; } </style> <script> window.onload = function() { document.getElementById('my_services').classList.add("active"); document.getElementById('my_services1').classList.add("in"); }; </script> <div class="small-header"> <div class="hpanel"> <div class="panel-body"> <div id="hbreadcrumb" class="pull-right"> <ol class="hbreadcrumb breadcrumb"> <li><a href="<?php echo $admin_baseurl . 'dashboard.php';?>">Dashboard</a></li> <li class="active"> <span>Services Category</span> </li> </ol> </div> <h2 class="font-light m-b-xs"> Add Services Category </h2> </div> </div> </div> <div class="content"> <div class="hpanel"> <div class="hpanel"> <div class="panel-heading hbuilt"> <div class="panel-tools"> <a class="showhide"><i class="fa fa-chevron-up"></i></a> <a class="fullscreen"><i class="fa fa-expand"></i></a> </div> Add New Services Category </div> <div class="panel-body"> <form method="post" action="execute.php" class="form-horizontal" enctype="multipart/form-data"> <div class="row"> <div class="form-group"> <div class="col-md-4"> <label>Select Main Services </label> <select id="main_service_id" name="main_service_id" class="form-control" required> <option value="" selected disabled>-- Select main service --</option> <?php $sql1m = "SELECT * FROM `services` ORDER BY `services`.`id` ASC"; $result1m = mysqli_query($conn, $sql1m); if (mysqli_num_rows($result1m) > 0) { while($row1m = mysqli_fetch_assoc($result1m)) { $det_det_id = $row1m['id']; $g_name = $row1m['name']; ?> <option value="<?php echo $det_det_id?>"> <?php echo $g_name;?></option> <?php } } ?> </select> </div> <div class="col-md-4"> <label> Service Category </label> <select name="sub_services_id" id="sub_services_id" class="form-control" required> <option value="" selected disabled>-- Select category--</option> </select> </div> <div class="form-group col-md-4"> <!-- <div class="col-md-6">--> <label>Services Last level Name</label> <input name="services_name" class="form-control" placeholder="eg. service name..." required> <!-- </div>--> </div> </div> <div class="form-group col-md-12"> <label>Custom url</label> <input name="custom_url" class="form-control" placeholder="eg. service custom url..."> </div> <div class="form-group col-md-12"> <label>Services Detail</label> <textarea style="height:200px;" class="textarea form-control" id="service_details" name="service_details" placeholder="Enter text ..." rows="15" data-height="100"></textarea> </div> <div class="form-group col-md-12"> <label>Main Images</label> <input type="file" id="file" class="form-control" name="image_a" multiple="multiple" accept="image/*" > </div> <div class="form-group col-md-12"> <label>Meta Title</label> <input name="meta_title" class="form-control" placeholder="eg.Meta title... "> </div> <div class="form-group col-md-12"> <label>Meta Keywords</label> <input name="keyword" class="form-control" placeholder="eg.Meta Keyword... "> </div> <div class="form-group col-md-12"> <label>Meta Description</label> <input name="description" class="form-control" placeholder="eg.Meta Description .."> </div> <hr> <div class="form-group col-md-12 text-center bg-info"> <p style="font-weight:600; padding:10px 0 2px">More Services Section <i class="fa fa-arrow-down" aria-hidden="true"></i></p> </div> <div class="form-group col-md-12 faqfield_wrapper"> <div class="form-group col-md-12"> <label style="font-weight:700">More Services Title</label> <input name="faqQuest[]" class="form-control" placeholder="More Services Title .."> </div> <div class="form-group col-md-12"> <label>More Services Details</label> <textarea class="textarea form-control" name="faqAns[]" placeholder="More Services Details..." rows="2"></textarea> </div> <!-- <div class="form-group col-md-12">--> <!-- <label>Other Images</label>--> <!-- <input type="file" id="file" class="form-control" name="imagea[]" multiple="multiple" accept="image/*" >--> <!--</div>--> </div> <div class="form-group col-md-12 text-center"> <a href="javascript:void(0);" class="faqadd_button btn btn-info" title="Add field"> Add More Sercvices (<span style="color:#ffb606;" id="FaqCount"></span>)</a> </div> <hr> <div class="form-group col-md-12 text-right"> <button type="submit" name="add-new-services-last-level" class="btn btn-primary">Submit</button> </div> </div> </form> </div> </div> </div> </div> <script> $(function() { CKEDITOR.replace('service_details', { height: 350, filebrowserUploadUrl: "<?php echo $admin_baseurl . 'services/ckupload.php'; ?>", filebrowserUploadMethod: 'form' }); }); </script> <script type="text/javascript"> $('#main_service_id').click(function() { //Get selected Country ID var main_service_id = $(this).val(); $.ajax({ type: 'POST', url: 'getsubServcies.php', data: 'main_service_id=' + main_service_id, success: function(data) { $('#sub_services_id').html(data); } }); }) </script> <script type="text/javascript"> $(document).ready(function() { $('#FaqCount').text(1); var faqmaxField = 10; //Input fields increment limitation var faqaddButton = $('.faqadd_button'); //Add button selector var faqwrapper = $('.faqfield_wrapper'); //Input field wrapper var faqfieldHTML = '<div class="text-center"><a href="javascript:void(0);" style="margin-bottom:10px;" class="faqremove_button btn btn-danger text-center">Remove field for Services </a><div class="form-group col-md-12"><label style="font-weight:700;float:left;">More Services Title</label><input name="faqQuest[]" class="form-control" placeholder="More Services Title .."></div><div class="form-group col-md-12"><label style="font-weight:700;float:left;">More Services Details</label><textarea class="textarea form-control" name="faqAns[]" placeholder="More Services Details..." rows="2"></textarea></div><div class="form-group col-md-12"><label style="font-weight:700;float:left;">Other Images</label><input type="file" id="file" class="form-control" name="imagea[]" multiple="multiple" accept="image/*" ></div></div>'; //New input field html var faqx = 1; //Initial field counter is 1 //Once add button is clicked $(faqaddButton).click(function() { //Check maximum number of input fields if (faqx < faqmaxField) { faqx++; //Increment field counter $(faqwrapper).append(faqfieldHTML); //Add field html $('#FaqCount').text(faqx); } if(faqx == 10){ alert("Reached maximum attempts count."); } }); //Once remove button is clicked $(faqwrapper).on('click', '.faqremove_button', function(e) { e.preventDefault(); $(this).parent('div').remove(); //Remove field html faqx--; //Decrement field counter $('#FaqCount').text(faqx); }); }); </script> <br> <?php include('../include/footer.php'); ?>