| TOTAL: 58 Page: 1 of 3 |
|
How to create a simple (contact) Form with Validation (JQuery)
This tutorial is to help you to create a simple (tableless) contact form using AJAX, JQuery & PHP. We will have a HTML page which will contain the form, a CSS file, a php page where the data will be sent and another file where the validation function(s) will be located.

| Hits: | 3 | Platforms: | Windows |
| Ratings: | Last Updated: | 2008-10-08 |
Form validation
you have a form on your website and you want to make sure that your users use the form correctly. So I thought about the best way of doing this, and immediatly dismissed the idea of JavaScript because JavaScript can easily be disabled. So I knew that PHP was the answer.

| Hits: | 2 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2008-09-26 |
Sending Email with PHP
The mail function allows you to send emails directly from a script.

| Hits: | 5 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2008-05-19 |
PHP and Forms
You probably have a CMS or at least a blog script running on your website and to add articles, among other things, you fill out a form. If you've ever wondered how that translated over to a blog being added to a database and how it's verified, then you will want to read this tutorial.

| Hits: | 22 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2008-04-16 |
Building Feedback Form with php
we are going to create a feedback form for you site to allow users contact you. The script is very simple and this article is for php begginers. we have to follow following steps for that.

| Hits: | 13 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2007-12-23 |
Error Checking In Forms
This tutorial really covers two things in one, error checking when creating forms, checking for blank fields and checking if two fields match each other, but i guess you could also call it part four of the guestbook tutorial because much of it you can apply to the form in your guestbook (if you made one from the tutorial) that people use to add messages.

| Hits: | 10 | Platforms: | Linux Windows |
| Ratings: | Last Updated: | 2007-06-29 |
Form mail using PHP
One of the most important scripts which is used online is the Mail Form. Fortunately, PHP makes it extremly easy to use form mail, using the mail() function. So the Form Mail we're going to make is going to be broken does into 2 parts. One part has the HTML for the form and the second part is the processing for the form. However, we have to work backwards and do the processing before hand. We will ask three things on the form to keep it simple: their name, their e-mail address, and their comment

| Hits: | 14 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-06-21 |
PHP Form Handling
If your PHP program is a dynamic web page (and it probably is) and your PHP program is dealing with user input (and it probably is), then you need to work with HTML forms. Here are some tips for simplifying, securing, and organizing your form-handling PHP code.

| Hits: | 30 | Platforms: | Windows |
| Ratings: | Last Updated: | 2007-04-11 |
Email validation in PHP
Nowadays almost all website has some kind of html form. The most best-known are the user registration forms, information request forms and so on. As the form makes sense only if the visitor submits valid information so the site developer should take care of the data alidity. The form validation process can be divided into 2 categories. * Client side validation * Server side validation The client side validation is mostly realized via JavaScript code. The pro is that the proce

| Hits: | 14 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2007-04-10 |
Creating a simple contact form with PHP 1.0
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.

| Hits: | 24 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2007-03-31 |
Advanced Contact Form - Well explained guide to contact form creation
Digital Squid is a new community, mostly related to PHP Coding and Adobe Photoshop Graphics. We provide you with quality tutorials related to both the subjects. Some examples: PHP Coding - Simple PHP function tutorials, like if and else statements - Advanced PHP tutorials such as user systems - Basic PHP code snippets We also made tutorials of all the codes used here on the website. As you can see we have a PHP guestbook, shoutbox, news script, downloads and an administration system. In

| Hits: | 81 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Mail Forms with Meta and Header Injection Protection
The problem with my basic PHP Mail Form tutorial is that it offers no protection from spam and meta tag injection. This is fine if you have a very low-traffic site not listed at major search engines, or have a private website, but bigger sites need more.

| Hits: | 54 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Creating simple PHP contact form
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. Overview if you want to test on you own computer you must set your computer as a mail server by using Argosoft mail server or relate software. In this tutorial create 2 files 1. contact.php 2. send_contact.php

| Hits: | 157 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
In Depth Contact Form Part 2 - The PHP Code
This tutorial follows on from "In Depth Contact Form Part 1 - The Form Itself" that describes the process involved in making the contact form as the user sees it. The second part of the tutorial details the PHP code that checks data has been entered and send an email containing this data.

| Hits: | 73 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Email Integration - Detailed tutorial on how to integrate email into your site
THIS IS A PHP TUTORIAL! First, we need to create a html document that the form will be located in. Or, you can just add the form into a pre-existing document.

| Hits: | 48 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
How to set up a \
First things first: you need to have the link, and a spot of PHP, on every page that you want a visitor to be able to send to a friend. This will include the URL and the filename of the page your visitor wants to send which will be assigned to a variable called $page.

| Hits: | 58 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Simple but effective user input securing for your forms
Many tutorials that tell you how to secure data tell you too use striptags() and then to use htmlspecialchars(). well theyre not only illogical but theyre also telling you insufficiant information.
illogical because:
striptags() removes html characters like < and > to make the input safe to display.
then htmlspecialchars()
turns them into their ascii equivalents (i.e. a space is ).
soo... you are removing them and then
securing them. YOU CANT SECURE THEM IF THEYRE REMOVED. i

| Hits: | 87 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Storing Data Part 2 - Storing form data in a MySQL Database
So you want to use storage? First, I'm assuming you know how to Setup a Database? If not, you need to look that up and read it. If you do, set up a database called "storage". The actual database name will actually probably be "username_storage" where username is the name you access your hosting account with.

| Hits: | 65 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Storing Data Part 1 - Collecting and Processing Form Data
You've mastered my PHP-mail form tutorial and you're receiving mail in your inbox, but you want more, right? You want a basic guestbook or a way to store visitor information: no problem! Follow this tutorial and you'll soon be storing data in a database, or even in a Comma Separated Value () file. Firstly, you might ask yourself why you'd need to store data online? Well, that's easy to answer — to collect data on your visitors, survey results, to have a basic guestbook, to run a fanlisting,

| Hits: | 69 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |
Affiliate System - Create an affiliate submission script for users to use
This tutorial was written on August 18, 2005 at 09:55:04 PM EDT by hiddens3crets

| Hits: | 31 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |