The Universal Web Form Processor PHP / Forms
This article describes how to create a generic form processor in PHP. Discussion involves form elements, hidden fields, and more. Also covers the installation process of NuSphere MySQL, an integrated multi-platform distribution of Apache, Perl, PHP, and MySQL.
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.
PHP Form image verification PHP / Forms
When you build a form in your web page, you are susceptible to being spamed by automated systems. In order to make sure that the one who completes the form is human, you can use the system with image verification. You can see here a sample of form with a random text image verification.
Using Form PHP / Forms
Using forms in a web based application is very common. Most forms are used to gather information like in a signup form, survey / polling, guestbook, etc.
PHP and AJAX Form PHP / Forms
PHP is an amazing web programming language, and it does wonders when you add AJAX to spice up your application. So in this dirty tutorial, I will share with you how to make a standard HTML form, but let PHP handle it without actually refreshing the HTML page or even submitting the web page to another flat PHP file.
PHP:Form Series: Validators & Client-side Validation PHP / Forms
This tutorial is really helpful to those of us who are a little intimidated by PHP:form. All of those hard to answer questions are easily explained in this simple to use educational web page.
PHP Email Form Easy PHP / Emailing
Now you can send emails from your web sites with full control over design style and functionality. PHP is the way to go for online email form.
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.
PHP Contact Form PHP / Forms
I made a simple form, but it gets the job done. You can customize it if you want, but remember to use the same form variables.
Creating a PHP Quiz Page PHP / Getting Started
PHP can be used to evaluate Quiz pages. The quiz page may be written in a normal form fashion, either multiple choice or True-false. After you create this form page, setting your PHP page as the action for the form, your php page can pick up the variables and evaluate the results of the form, scoring the form.
PHP form Introduction PHP / Forms
This article demonstrates how to use PHP forms. You will find detailed information from the form basics to advanced form processing.
Form Handling PHP / Forms
We are going to be working with the $_Post or $_Get arrays. They basically tell the form if i needs to post something, or get something. In this case we are going to be showing you the basics of a contact email form, so we will be using the $_Post array.
Creating a simple contact form with PHP PHP / Forms
In this tutorial I will show you how to create a simple contact form with PHP. With the help of a contact form your visitors will fill out a form and its content will be send to you via email.
Contact Form PHP / Forms
I will explain to you how you can create a simple contact form. The form will collect data from the visitor and send it to any email address you please. The only requirement for this tutorial is for you to have .php enabled on your server.
Creating simple PHP contact form PHP / Emailing
When you need user send feedback to your email you can usecontact form. In this tutorial you'll learn how to create contact form with php script.
PHP-Based Chat Room PHP / Chats
This particular design of web-based chat uses variables posted from a form, processes them into HTML and writes them to a file. Put the form and the message file in a frameset and you have something that looks reasonably like a BeSeen chat room. Of course the advantage is, our chat room can be a little more clever than it's BeSeen cousin.