| TOTAL: 58 Page: 1 of 3 |
|
Form Validation Using PHP
This tutorial explains how to validate HTML forms on server side using PHP.

| Hits: | 66 | Platforms: | Windows |
| Ratings: | Last Updated: | 2009-07-26 |
Form Validation With PHP
You can validate the form input on two places, client side and server side. Client side form validation usually done with javascript. Client side validation makes your web application respond 'faster' while server side form validation with PHP can act as a backup just in case the user switch off javascript support on her browser. And since different browsers can behave differently there is always a possibility that the browser didn't execute the javascript code as you intended.

| Hits: | 83 | Platforms: | Windows |
| Ratings: | Last Updated: | 2009-05-13 |
How to use the query string in PHP
This article tells you how to pass variables to a PHP page using the query string, and how to access them from that page.

| Hits: | 40 | Platforms: | Linux Mac Sun Windows |
| Ratings: | Last Updated: | 2009-05-13 |
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: | 133 | 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: | 80 | 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: | 79 | 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: | 112 | 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: | 57 | 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: | 42 | 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: | 45 | 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: | 99 | 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: | 47 | 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: | 66 | 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: | 130 | 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: | 74 | 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: | 192 | 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: | 106 | 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: | 71 | 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: | 78 | 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: | 121 | Platforms: | Windows |
| Ratings: | Last Updated: | 2006-07-08 |