Ground Floor
Ground Floor
Second floor:
Overall, the total size of the all-concrete, 2-story building is approximately 1,420 sq ft. However, please
note that these dimensions are just suggestions and can be adjusted based on your specific
requirements and constraints.
--
Ground floor:
Reception area
Pantry area
Server room
Second floor:
Restroom
Storage room
Manager's office
Building specifications:
All-concrete construction
Two-story building
<?php
// Create
function createFarmer($lastName, $firstName, $middleName, $farmType,
$membershipDate, $password) {
global $conn;
// Bind parameters
$stmt->bind_param("ssssss", $lastName, $firstName, $middleName,
$farmType, $membershipDate, $hashedPassword);
// Read
function getFarmers() {
global $conn;
// Update
function updateFarmer($id, $lastName, $firstName, $middleName, $farmType,
$membershipDate, $password) {
global $conn;
// Bind parameters
$stmt->bind_param("ssssssi", $lastName, $firstName, $middleName,
$farmType, $membershipDate, $hashedPassword, $id);
// Delete
function deleteFarmer($id) {
global $conn;
// Bind parameters
$stmt->bind_param("i", $id);
?>