/var/www/(Del)pathways.org.hk/MIS20140127/old20140127/student_invoice/invoice.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<!DOCTYPE html>
<html>
    <head>
        <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
        <?php
        
require_once '../include/head.php';
        require_once 
'../include/checkuser.php';
        require_once 
'../include/Nav_bar.php';
        include_once 
'../include/DBConnect.php';
        
?>
        <script>
            function check_all(obj,cName){
                var checkboxs = document.getElementsByName(cName);
                for(var i=0;i<checkboxs.length;i++){
                    checkboxs[i].checked = obj.checked;
                }
            };
            $(function(){
                $('.date-picker').datetimepicker({ pickTime: false,format: 'yyyy-MM-dd'});
            });
        </script>
    </head>
    <body>
        <!-- line between nav bar and content -->
        <div class="text-right">
            <ul class="breadcrumb">
                <li class="active"></li>
            </ul>
        </div>
        <!-- line between nav bar and content -->
        <div class="container-fluid pathways-container">
            
        </div>
    </body>
</html>