Advertisement
riyanris

riyan_index

Apr 1st, 2019
570
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.63 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4.     <meta charset="utf-8">
  5.     <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6.     <title>CURD SEDERHANA</title>
  7.     <link rel="stylesheet" href="">
  8.     <script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
  9. </head>
  10. <body>
  11.     <h1>CRUD AJAX NO RELOAD</h1>
  12.     <input type="text" name="nama" id="nama"><br>
  13.     <input type="text" name="umur" id="umur"><br>
  14.     <input type="submit" id="simpan" value="Simpan"><br><br>
  15.     <table border="1">
  16.         <tr>
  17.             <th>No</th>
  18.             <th>Nama</th>
  19.             <th>Umur</th>
  20.             <th>aksi</th>
  21.         </tr>
  22.         <tbody id="tabel">
  23.            
  24.         </tbody>
  25.     </table>
  26. </body>
  27. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement