Student CRUD
Create Student
<!DOCTYPE html>
<html>
<head>
<title>Add Student</title>
<style>
label, input {
display: block;
margin-bottom: 10px;
}
</style>
</head>
<body>
<h1>Add Student</h1>
<form method="post" action="add_student.php">
<label>Name:</label>
<input type="text" name="name" required>
<label>Email:</label>
<input type="email" name="email" required>
<label>Phone:</label>
<input type="tel" name="phone" required>
<label>Address:</label>
<textarea name="address"></textarea>
<input type="submit" value="Add Student">
</form>
</body>
</html>2.
Display Students
Edit Student
Last updated