Skip to content

Instantly share code, notes, and snippets.

@nafism05
Created April 20, 2019 23:19
Show Gist options
  • Save nafism05/6c6201e642477256aa292554d72910fe to your computer and use it in GitHub Desktop.
Save nafism05/6c6201e642477256aa292554d72910fe to your computer and use it in GitHub Desktop.
CRUD
<!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