Created
April 20, 2019 23:19
-
-
Save nafism05/6c6201e642477256aa292554d72910fe to your computer and use it in GitHub Desktop.
CRUD
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <!DOCTYPE html> | |
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <center> | |
| <h2>Aplikasi Booking Futsal</h2> | |
| <h3>Form Input</h3> | |
| <form method="post" action="inputprosess.php"> | |
| <table> | |
| <tr> | |
| <td>Nama</td> | |
| <td><input type="text" name="nama" /></td> | |
| </tr> | |
| <tr> | |
| <td>Jam Mulai</td> | |
| <td><input type="text" name="jammulai" /></td> | |
| </tr> | |
| <tr> | |
| <td>Durasi</td> | |
| <td><input type="text" name="durasi" /></td> | |
| </tr> | |
| <tr> | |
| <td colspan="2"><input type="submit" value="Simpan"></td> | |
| </tr> | |
| </table> | |
| </form> | |
| </center> | |
| </body> | |
| </html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment