D7net
Home
Console
Upload
information
Create File
Create Folder
About
Tools
:
/
home
/
shubmkcj
/
designpitara.com
/
admin
/
services
/
Filename :
add-service-category.php
back
Copy
<?php include("../include/config.php"); include("../include/sessionhandle.php"); include("../include/header.php"); ?> <style> #my_services ul li:nth-child(3) { background-color: #eb6a4e; } #my_services ul li:nth-child(3) a { color: #fff; } #my_services ul li:nth-child(3) 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-6"> <label>Select Main Services </label> <select 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="form-group col-md-6"> <!-- <div class="col-md-6">--> <label>Services 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_detail" placeholder="Enter text ..." rows="15" data-height="100"></textarea> </div> <div class="form-group col-md-12"> <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> <div class="form-group col-md-12 text-right"> <button type="submit" name="add-new-services-category" 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> <br> <?php include('../include/footer.php'); ?>