1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
<?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="10%">Cheque No</td> <td><input type="text" name="cheque_no"></td> <?php break; } }
|