Advertisement
GWibisono

test

Apr 18th, 2014
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. <?php
  2. /*
  3. KARENA lebih greget semua coding jadi 1
  4. */
  5.  
  6. include "../includes/config.php";
  7. include "../includes/functions.php";
  8. //===========start
  9. if($_POST['tombol'])
  10. {
  11.    print_r($_POST);print_r($_FILES); die();
  12. }
  13. //===========end
  14.  
  15. $_SESSION['s_page'] = "users/keranjang.php";
  16. ?>
  17. <form enctype="multipart/form-data" method="post"  action="?dadsa"  >
  18.     <table>
  19.         <tr>
  20.             <td>Tanggal Transfer</td>
  21.             <td>:</td>
  22.             <td><input type="hidden" name="hdid" id="hdid" value="<?php echo $_POST['id']; ?>" /><input type="text" name="txttanggal" id="txttanggal" size="10" value="<?php echo date("d/m/Y"); ?>" />&nbsp;<img src="includes/popup-calendar/calendar.gif" width="24" height="12" onclick="displayCalendar(document.getElementById('txttanggal'),'dd/mm/yyyy',this)" style="cursor:pointer"></td>
  23.         </tr>
  24.         <tr>
  25.             <td>Bank Rekening Asal</td>
  26.             <td>:</td>
  27.             <td><input type="text" name="txtbank" id="txtbank" /></td>
  28.         </tr>
  29.         <tr>
  30.             <td>Nama Pemilik Rekening Asal</td>
  31.             <td>:</td>
  32.             <td><input type="text" name="txtpemilik" id="txtpemilik" /></td>
  33.         </tr>
  34.         <tr>
  35.             <td>Jumlah Dana Dikirim</td>
  36.             <td>:</td>
  37.             <td><input type="text" name="txtdana" id="txtdana" /></td>
  38.         </tr>
  39.        
  40.         <tr>
  41.             <td>Gambar</td>
  42.             <td>:</td>
  43.              <td><input type="file" name="foto" id="foto" /></td>
  44.         </tr>
  45.         <tr>
  46.             <td colspan="3"><input type="submit" name='tombol' value="Kirim"  /></td>
  47.  
  48.         </tr>
  49.     </table>
  50. </form>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement