You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The Home Care App is an all-in-one platform to connect users with trusted and verified home service professionals.
Whether you need a plumber, electrician, carpenter, or technician, Home Care ensures reliability and quality with just a few taps.
π Features
For Users
π Book service slots easily
β Rate and give feedback to providers
π§Ύ View booking history anytime
For Service Providers
β Register and verify profile
π₯ Receive and manage booking requests
π Track performance and ratings
π οΈ Tech Stack
Frontend: Flutter
Backend: PHP (XAMPP)
Database: MySQL
πΈ Screenshots
ποΈ Project Structure
lib/
βββ service_provider/ # Screens for service providers
βββ users/ # Screens for users
βββ models/ # Data models (User, ServiceProvider, Booking, etc.)
βββ widgets/ # Reusable UI components
<?phpinclude("connection.php");
$email = $_POST['email'];
$password = $_POST['password'];
$sql = "SELECT * FROM user WHERE email ='$email' AND password ='$password'";
$result = mysqli_query($con, $sql);
if (mysqli_num_rows($result) > 0) {
$row = mysqli_fetch_assoc($result);
$data['message'] = 'success';
$data['userInfo'] = $row;
} else {
$data['message'] = 'failed';
}
echojson_encode($data);
?>
About
The Home Care App connects users with verified home service professionals like plumbers, electricians, and technicians, making it easy to book trusted services quickly and reliably.