0byt3m1n1
Path:
C:
/
wamp64
/
www
/
cpms_new
/
ED
/
[
Home
]
File: projectreport.php
<?php $MAIN_HEADING = "Project Details"; ?> <?php include("include/ed_header.php"); require_once("projectreport_ctrl.php"); ?> </p> <form id="form1" name="form1" method="post" action="projectreport_ctrl.php"> <table width="762" border="0"> <tr class="form-group"> <td width="179"> </td> <td width="53"> </td> <td width="77">Date</td> <td width="310"> <!-- <input class="form-control" name="txtyear" type="text" id="txtyear" size="5" maxlength="4" /> --> <input id="date_current" required readonly type="text" class="form-control col-md-7 col-xs-12" required="required" name="date_current" value="<?php if (isset($date_current) && $date_current!="") { echo $date_current; } ?>" /> <ul class="parsley-errors-list filled" id="parsley-id-5"> <li class="parsley-required"><?php if(isset($error['date_current'])) { echo $error['date_current']; }?></li> </ul> <span class="valText">(leave year blank for all projects)</span></td> <td width="121"><span class="valText"><?php if(isset($error['date_current'])) { echo $error['date_current']; } ?> </span></td> </tr> <!-- <div class="form-group"> <label class="control-label col-md-3 col-sm-3 col-xs-12" for="date_current">Date</label> <div class="col-md-6 col-sm-6 col-xs-12"> <input id="date_current" required readonly type="text" class="form-control col-md-7 col-xs-12" required="required" name="date_current" value="<?php if (isset($date_current) && $date_current!="") { echo $date_current; } ?>" /> <ul class="parsley-errors-list filled" id="parsley-id-5"><li class="parsley-required"><?php if(isset($error['date_current'])) { echo $error['date_current']; }?></li></ul> </div> </div> --> <tr> <td> </td> <td> </td> <td>Division</td> <td><select class="form-control" name="cmbdivision" id="cmbdivision" onchange=""> <?php for($j=0;$j<=$i;$j++) {?> <option value="<?php echo $j; ?>"><?php echo $u_name_array[$j]; ?></option> <?php } ?> </select></td> <td> </td> </tr> <tr><td><br/></td></tr> <tr> <td> </td> <td> </td> <td> <input class="btn btn-success" type="submit" name="Submit" id="Submit" value="Show" /> </td> <td> </td> </tr> </table> <p class="tableInner"> </p> <p> </p> <p> </p> <p> </div> </form> <?php include "include/footer.php"; ?> </p> </body> </html> <script> $(document).ready(function() { $('#date_current').daterangepicker({ showDropdowns: true, }, function(start, end, label) { }); }); </script>