Hello, I need some help for some code. I am new to html code and just starting to learn, I am making a site just for my personal use at home just to try to learn html. Here is what I have and want to do...My site is a recipe site that will be stored on my home computer/home network.. If I wanted to add a search box to be able to search for recipes with in that site can this be done and how? I have recipe links (Drinks, Desserts, Meats) when I click a link it opens up another page with the different choices of recipes. I would like to add a search on the main page to look for the different recipes, is this possible......Thanks for any help I can get
You keep the recipes in a database (you probably already have MySQL installed if you installed a web server on your computer), and write a form that sends the text you're searching for to a PHP file on the server to do the actual search (in SQL), then sends the recipe it finds to the browser. (Or just use a database and forget using it as a website. It's a lot easier that way, if you're just using it for yourself.)