Daily Bread Co.

Nourishing your faith daily!

Module 2 Forms

PHP is a server-side scripting language used to create dynamic web pages and process form data.

GET sends form data through the URL, making the information visible in the address bar. It is best for simple, non-sensitive data.

POST sends form data in the request body, so the data is not shown in the URL. It is better for larger or more private data.

Complete the GET Product Survey

Complete the POST Product Survey