<label class="col-md-4 control-label">Lname</label> <div class="col-md-8"> <input type="text" value="<?php echo $userarrxx['lname']; ?> " name="lname" class="form-control" required> </div> </div> <div class="form-group"> <label class="col-md-4 control-label">Email Address</label> <div class="col-md-8"> <input type="text" value="<?php echo user_have_email($userarrxx['slno']); ?> " class="form-control" disabled> </div> </div> <div class="form-group"> <label class="col-md-4 control-label">Phone</label> <div class="col-md-8"> <input type="text" value="<?php echo $userarrxx['phone']; ?> " name="phone" class="form-control" required> </div> </div>
</td> <td><?php $utype = get_the_usertype($data['usertype']); echo $utype['usertype']; ?> </td> <td><?php echo $data['username']; ?> </td> <td><?php echo date("M,d Y", strtotime($data['debut'])); ?> </td> <td><?php echo user_have_email($data['slno']); ?> </td> <td> <?php if ($data['status'] == 'active') { ?> <span class="label label-sm label-success">Active</span><?php } ?> <?php if ($data['status'] == 'inactive') { ?> <span class="label label-sm label-danger">Inctive</span><?php }