?
Current Path : /home1/savoy/public_html/savoyglobal.net/drafthr/system/application/views/Report/ |
Linux gator3171.hostgator.com 4.19.286-203.ELK.el7.x86_64 #1 SMP Wed Jun 14 04:33:55 CDT 2023 x86_64 |
Current File : /home1/savoy/public_html/savoyglobal.net/drafthr/system/application/views/Report/brobranchwise.php |
<?php if ( ! defined('BASEPATH')) exit('No direct script access allowed');?> <script type="text/javascript"> jQuery(document).ready(function () { $('.one').datepick({dateFormat: 'dd-mm-yyyy'}); $('.two').datepick({dateFormat: 'dd-mm-yyyy'}); }); </script> <form id="customForm" name="customForm"> <fieldset> <div class="leftalign"> <?php echo "<li> <label>Branch</label><select name='branch' id='branch'>"; $stat=$this->mastermodel->getdatas('ourbranch'); foreach($stat as $sta) { echo "<option value='". $sta['id'] . "'>" . $sta['branchname'] . "</option>"; } echo "</select></li>"; ?><span id="branchInfo" class="red_bold"></span> </div> <div class="rightalign"> <ul> <li><label>Start Date</label><label><input class="one" id="fromdate" name="fromdate" readonly="true" type="text" style="background-image: url(../../../../assets/images/datefocus.gif);"></label></li> <li><label>End Date</label><label><input class="two" id="todate" name="todate" readonly="true" type="text" style="background-image: url(../../../../assets/images/datefocus.gif);"></label></li> </ul> </div> <div class="centeralign"><ul> <li><label><input type="button" value="Generate Report" onclick="generatebrobranchwise();"></label></li> </ul> </div> </fieldset> </form>