FindArchi
The Brief
FindArchi helps clients discover architects, compare portfolios, and build the right project team faster.

Tech Stack
Key Challenges & Solutions
Critical Challenge
Team Composition & Management
Allowing clients to construct multidisciplinary teams without complex interface bloat.
Engineered Solution
Designed a dynamic workspace module in PHP that aggregates reviews and availability slots into a unified team planner.
Critical Challenge
Data Consistency in Relational Pools
Synchronizing project updates, reviews, and bookings across multiple tables under heavy read actions.
Engineered Solution
Optimized MySQL queries with indexes and transactions, securing ACID compliance during simultaneous hiring workflows.
Impact & Metrics
Core Architecture
- Browser ClientPOST /hire.php {architect_id, date}PHP Router
- PHP RouterINSERT INTO bookings (client_id, architect_id, booking_date)MySQL Database
- MySQL DatabaseBooking ID CreatedPHP Router
- PHP RouterSELECT email FROM users WHERE id = architect_idMySQL Database
- MySQL Database[email protected]PHP Router
- PHP RouterSend email notification to architectPHP Mailer
- PHP MailerMail SentPHP Router
- PHP RouterRedirect to success pageBrowser Client