In this tutorial I'll show you a way to make your forms more friendly with PHP, so users don't have to keep filling forms in if they make a mistake -- make your forms more friendly.
Working with forms in PHP PHP / Forms
One of the most popular ways to make a web site interactive is the use of forms. With forms you can have users register for different things, submit any information you can imagine, upload files, and all types of other things. In this tutorial, we will go through the basics of forms and how to handle the data that comes from those forms with PHP.
Using Forms With PHP PHP / Forms
This tutorial introduces how to use forms with PHP. Demonstrates how PHP passes information from a form. Also explains security checking using environment variables.
Interacting with Web Forms PHP / Forms
HTML forms are one of the key ingredients of any dynamic website because they can enable the users of a site to interact with it. Otherwise, websites are more or less static: They may be driven by a database and, therefore, regularly changing, but they look the same for each and every visitor. HTML forms can change that; therefore, using data from forms from within PHP is very important.
Creating friendly URLs with mod_rewrite PHP / Navigation
This programming tutorial will teach you how to build search engine friendly URLs in PHP, which contain keywords and use HTML extensions. We are going to use the htaccess file and mod_rewrite module running on an Apache server.
How to Create CAPTCHA Protection using PHP and AJAX PHP / Miscellaneous
CAPTCHA is a simple test to determine if a user is a computer or a human. It is used to prevent spam abuse on the websites. So if you use CAPTCHA on your web site forms, this can help in stopping some bots and making life harder for other bots in accessing or using your forms. In brief the CAPTCHA protection works by generating a random string, writing it to an image, then storing the string inside of a session or by some other method. This is then checked when the form is submitted. The goal of this tutorial is to demonstrate how to make your own simple CAPTCHA protection using PHP and AJAX technologies.
Multi-page Forms with PHP PHP / Forms
This article will touch on two skills in the interface between PHP and HTML forms, specifically in working with hidden fields, and as a bonus, in passing arrays in an HTML form.
PHP With HTML Forms PHP / Forms
This 2-page tutorial shows how to work HTML forms in PHP. Topics covered: Drop menu builder, Radio buttons, Check boxes, Error processing, and more.
Making Sticky Forms PHP / Forms
Learn how to create and use sticky forms, which saves data that has been entered into a form, so a user does not have to re-type out the information if there is an error.
Creating a PHP form PHP / Forms
PHP is a great processor of forms, hence knowing how to write a simple form for php processing is the precursor to make the PHP work.
Form Processing PHP / Forms
One of the best features of PHP is possibility to respond to user queries or data submitted from HTML forms. You can process information gathered by an HTML form and use PHP code to make decisions based off this information to create dynamic web pages. In this tutorial we will show how to create an HTML form and process the data.
Create Dynamic URLs With Mod_Rewrite and PHP Functions PHP / General Development
How to use mod_rewrite for search engine friendly URLs, but have since found the uses lacking. For one thing, you can't pass variables well without adding more commands to mod_rewrite. So here you'll learn to add unlimited parameters to your links with only one simple PHP function.