Advertisement
Guest User

Untitled

a guest
Nov 14th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 1.61 KB | None | 0 0
  1. <body>
  2. <form id="form1" name="form1" method="post" action="<?php echo $editFormAction; ?>" >
  3.   <table width="832" border="1" cellspacing="0" cellpadding="0">
  4.       <tr>
  5.         <td>MATERIAL</td>
  6.         <td>QTY</td>
  7.         <td>HARGA</td>
  8.         <td>JUMLAH</td>
  9.       </tr>
  10.       <tr>
  11.       <td><label for="material"></label>
  12.       <input type="text" name="material" id="material" />
  13.       <input name="help" type="button" id="help" onclick="MM_openBrWindow('window/test window harga.php','','scrollbars=yes,width=700,height=500')" value="Help" /></td>
  14.       <td><input type="text" id="qty" name="qty[]" value="0"
  15.     rel="0"
  16.     ref="0"
  17.     onfocus="input_focus(this);"
  18.     onkeydown="return input_keydown(this,event);"
  19.     onkeyup="input_keyup(this,'qty');"
  20.     >
  21.     </td><td><input type="text" id="harga" name="harga[]" value="0"
  22.     rel="0"
  23.     ref="0"
  24.     onfocus="input_focus(this);"
  25.     onkeydown="return input_keydown(this,event);"
  26.     onkeyup="input_keyup(this,'harga');"
  27.     onblur="return input_onblur(this);"
  28.     >
  29.     </td><td><div id="subtotal" align="right" ref="0">0.00</div></td>
  30.     </tr>
  31.     <tr>
  32.       <td>&nbsp;</td>
  33.       <td>&nbsp;</td>
  34.       <td id="price" >&nbsp;</td>
  35.       <td>&nbsp;</td>
  36.     </tr>
  37.     <tr>
  38.       <td colspan="4"><div align="center">
  39.         <input type="submit" name="submit" id="submit" onclick="return tanya()" value="Submit" />
  40.         <input type="reset" name="reset" id="reset" value="Reset" />
  41.       </div></td>
  42.     </tr>
  43.   </table>
  44.   <input type="hidden" name="MM_insert" value="form1" />
  45.   <script>
  46.  calc_total();
  47. </script>
  48.  
  49. </form>
  50. </body>
  51. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement