📁
SKYSHELL MANAGER-
🛒
PHP v7.4.33
Create Folder
Create File
Current Path:
home
/
oshofree
/
public_html
/
chbluxuries.com
/
chb_data
/
Name
Size
Permissions
Actions
📁
..
-
0755
🗑️
🔒
📄
config.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
📄
error_log
206.12 KB
0644
🗑️
⬇️
✏️
🔒
📄
system.php
7.06 KB
0444
🗑️
⬇️
✏️
🔒
Editing: addsaloonstaff.php
<?php include "header.php";?> <div class="d-sm-flex align-items-center justify-content-between mb-4"> <h1 class="h3 mb-0 text-gray-800">Add New Saloon Staff</h1> <ol class="breadcrumb"> <li class="breadcrumb-item"><a href="dashboard.php">Home</a></li> <li class="breadcrumb-item active" aria-current="page">Staff</li> </ol> </div> <!-- Row --> <div class="row"> <div align="center" class="col-lg-12"> <?php include "add_saloonstaff.php"; ?> <div class="arizona"> <form enctype="multipart/form-data" method="post" style="width:100%; margin:auto; text-align:left;"> <input type="text" class="form-control" name="name" placeholder="*Name" required /><br /> <input type="text" class="form-control" name="email" placeholder="*Email" required /><br /> <input type="text" class="form-control" name="phone" placeholder="*Phone Number" required /><br /> <input type="text" class="form-control" name="password" placeholder="*Password" required /><br /> <p><input type="radio" value="male" name="type"/> <label>Male</label> <input type="radio" value="female" name="type"/> <label>Female</label></p> <p><select class="form-control" name="service" required> <option selected="selected" value="">- Select Service Category -</option> <?php $sql = "select id,name from category where id!='$main'"; $sql2 = mysqli_query($con,$sql); while ($row = mysqli_fetch_array($sql2)) { echo'<option value="'.$row['id'].'">'.$row['name'].'</option>'; } ?></select></p> <p><input type="file" name="file" class="form-control" id="customFile" required></p> <input type='submit' name='register' value='Register Staff' class='btn btn-primary' ></form> </div></div> </div> <?php include "footer.php"; ?>
💾 Save Changes