The WOK's mockup

Recipe Website

Project Overview

This case study highlights the development of a recipe website using PHP, focusing on creating a dynamic, data-driven platform that integrates a MySQL database to retrieve and display recipes. The project aligns with the goals of the course, which emphasizes server-side programming, handling user input, managing databases, and implementing key features such as user authentication and dynamic content retrieval. The website aims to simplify recipe browsing by offering search and filter functionalities, providing users with an intuitive and interactive experience.

Details

Role: UI/UX designer

Duration: Fall 2025

Tool and Technologies: PHP, mySQL, HTML, CSS, Javascript

Context and Challenge

Background

This is an independent project assigned as a practical exercise to deepen understanding of server-side scripting (PHP) and how it integrates with client-side technologies. The project also introduced database management concepts through phpMyAdmin, culminating in a functional, data-driven web application.

Problem

The challenge was to design and develop a fully functional recipe website that dynamically loads data from a database while providing users with an engaging and intuitive experience for browsing and filtering recipes.

Goal and Objectives

This was a solo project, where I managed all aspects of development, from concept to completion.

Timeline

Alpha Phase

Focused on branding and creating a responsive website using HTML, CSS, and JavaScript.

Beta Phase

Transitioned to using PHP as the primary scripting language. Developed a functioning prototype that is responsive across devices (small to large screens) and includes dynamic content driven by a MySQL database.

Final Phase

Polished the project to ensure all features worked seamlessly and met the project criteria.

Process and Insight

Alpha Phase

I started with branding by selecting a logo that I found visually appealing and building the website's design around it. From there, I developed a cohesive color palette and design aesthetic. Once the design foundation was set, I built the initial static version of the website using HTML, CSS, and JavaScript, ensuring it was responsive and visually appealing.
Alpha Desktop

Beta Phase

During this phase, I transitioned the static pages into dynamic ones using PHP, enabling the website to deliver personalized and interactive content. I established database connections with MySQL to store and retrieve recipe data efficiently, leveraging phpMyAdmin to design and manage a well-structured database. This database holds all the recipe details, including titles, subtitles, descriptions, ingredients, protein type, cuisine, cook time, and images.
Database

Database stores all recipes' information

Then I implemented a robust search and filter functionality. Users can search for recipes using keywords that are dynamically matched across multiple fields, such as ingredients, and cuisine, or apply filters to narrow down results based on specific criteria like protein type. The system uses prepared statements to ensure secure and efficient querying of the database, preventing SQL injection vulnerabilities.
example 1
To display all recipes or those filtered by the user's keyword, I used a foreach loop to iterate through the results retrieved from the database and dynamically render them on the webpage. Each recipe displays its image, title, and a link directing users to a detailed page for that specific recipe
example 2
For the recipe's detail page, I also used PHP to retrieve data from the database and display it dynamically on the page. To present the instructions step-by-step, I utilized the explode function to break the instruction string into individual steps and display them sequentially.
example 3
I used the RAND() function in my SQL query to retrieve three random recipes from the database and a for loop to display them on the homepage. This ensures users see a fresh selection of recipes with each reload.
example 4 example 5

Final Phase

In the final phase, I focused on polishing the project to ensure all PHP scripts and database queries worked seamlessly. I optimized the code for better performance and conducted extensive responsive testing across various devices to guarantee a consistent user experience.

Solution

Home Page

On the homepage, I implemented a feature to display three random recipes that update every time the page reloads. To ensure easy navigation, I added a "View All Recipes" button that links directly to the main recipe page.
home screen

Recipe Page

The recipe page displays 40 recipes and includes a search bar and a protein filter. Users can search for recipes using keywords or narrow down results by selecting a specific protein type. I also added a "Clear Filter" button, which resets the filters and restores the full list of recipes. Each recipe card includes a clickable link that redirects users to its detailed page.
recipe page

Recipe Detail Page

The detail page is designed to provide all necessary information about a specific recipe. It displays the recipe's title, subtitle, and description, alongside a list of ingredients with corresponding images. I also included step-by-step instructions with visuals to guide users. The layout is fully responsive, adapting dynamically to different screen sizes for a seamless user experience.
detail page

Help Page

To make the website more user-friendly, I included a help page that provides detailed guidance on navigating and using the website effectively.
help page

What I learned

Throughout this project, I gained valuable experience in PHP and database integration. The project successfully met its objectives: The iterative process allowed me to refine the website's functionality and design. If given more time, I would implement additional features, such as filtering recipes by cook time, servings, or calories, to further enhance user experience.

Other Projects

petes logo

Designing a food ordering app for a local food truck on Drexel's campus.