/var/www/(Del)pathways.org.hk/MIS20140127/old20140414/Receipt/receipt_search_ajax.php


1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<?php

include_once '../include/DBConnect.php';
if (isset(
$_REQUEST['paytype'])) {
    
$paytype $_REQUEST['paytype'];
    switch (
$paytype) {
        case 
1:
            
?>
            <td  width="10%"><label>Bank Name</label></td>
            <td><input type="text" name="bankname"></td>
            <td width="5%"></td>
            <td width="10%">Cheque No</td>
            <td><input type="text" name="cheque_no"></td>
            <?php

            
break;
    }
}