PHP Form Validator 1.0 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News PHP Form Validator 1.0 (Default branch)
# 1  
Old 08-28-2008
PHP Form Validator 1.0 (Default branch)

ImagePHP Form Validator is a simple, generic formvalidation script for use in PHP form processors.It contains a set of commonly required formvalidations. Using this script, it is quick andeasy to add form validations to your PHP formprocessor. It can save you from repetitive codingof common form validations. Documentation and codesamples are included.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

4 More Discussions You Might Find Interesting

1. Web Development

Php help to copy form field if empty

I have an input form with several fields. What I would like to achieve is to auto populate or copy certain fields if they are empty when the form is submitted. I would like to use php if not then javascript but not jquery if possible - I have sort of had a go but I really have no idea... (4 Replies)
Discussion started by: barrydocks
4 Replies

2. Web Development

Attachement Form Mail in php

Dear Sir, I have used a php form mail code in a website. The problem I am facing is: the text in mail body is getting injected to a configured yahoo mail ID, but no attachement file. I need the attachement to go to the configured yahoo mail ID. The code I have used : <?php ... (1 Reply)
Discussion started by: swapan
1 Replies

3. Shell Programming and Scripting

Form validation in PHP

My form validation script looks like this of the form like this.... <html> <form method="POST" action=""> <table > <tr> <td >Name:</td> <td ><input type="text" name="name" size="30%"></td> </tr> <tr> <td >Phone:</td> <td ><input type="text" name="phone" size="30%"></td> </tr>... (0 Replies)
Discussion started by: gameboy87
0 Replies

4. Shell Programming and Scripting

PHP Help with Form Submit

Hi, I have a custom HTML form that has a couple radio buttons and a text field that requires a number. I'm not a php programmer and could use some help with putting together php code to calculate a total based on the radio button selection and the text field number. ... (3 Replies)
Discussion started by: nck
3 Replies
Login or Register to Ask a Question
NORMALIZER(3)								 1							     NORMALIZER(3)

The Normalizer class

INTRODUCTION
Normalization is a process that involves transforming characters and sequences of characters into a formally-defined underlying represen- tation. This process is most important when text needs to be compared for sorting and searching, but it is also used when storing text to ensure that the text is stored in a consistent representation. The Unicode Consortium has defined a number of normalization forms reflecting the various needs of applications: oNormalization Form D (NFD) - Canonical Decomposition o Normalization Form C (NFC) - Canonical Decomposition followed by Canonical Composition o Normalization Form KD (NFKD) - Compatibility Decomposition o Normalization Form KC (NFKC) - Compatibility Decomposition followed by Canonical Composition The different forms are defined in terms of a set of transformations on the text, transformations that are expressed by both an algorithm and a set of data files. CLASS SYNOPSIS
Normalizer Normalizer Methods o publicstatic bool Normalizer::isNormalized (string $input, [string $form = Normalizer::FORM_C]) o publicstatic string Normalizer::normalize (string $input, [string $form = Normalizer::FORM_C]) PREDEFINED CONSTANTS
The following constants define the normalization form used by the normalizer: o Normalizer::FORM_C ( integer) - Normalization Form C (NFC) - Canonical Decomposition followed by Canonical Composition o Normalizer::FORM_D ( integer) -Normalization Form D (NFD) - Canonical Decomposition o Normalizer::FORM_KC ( integer) - Normalization Form KC (NFKC) - Compatibility Decomposition, followed by Canonical Composition o Normalizer::FORM_KD ( integer) - Normalization Form KD (NFKD) - Compatibility Decomposition o Normalizer::NONE ( integer) -No decomposition/composition o Normalizer::OPTION_DEFAULT ( integer) -Default normalization options SEE ALSO
o Unicode Normalization o Unicode Normalization FAQ o ICU User Guide - Normalization o ICU API Reference - Normalization PHP Documentation Group NORMALIZER(3)