Contact Form 3.00.00 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Contact Form 3.00.00 (Default branch)
# 1  
Old 09-24-2008
Contact Form 3.00.00 (Default branch)

ImageContact Form is a Perl script that allows users to send you email through a Web interface. It is designed to thwart spammers by not allowing email to be sent to unknown addresses, or revealing the addresses that it knows. In addition to this, it does not contain cross site scripting vulnerabilities or allow arbitrary code to be run on the host. It provides adequate information in the headers it sends to trace spammers, can check the validity of all data before sending emails, and features a customizable interface that allows for arbitrary fields.License: GNU General Public License (GPL)Changes:
The ability to use CAPTCHA for spam prevention andan external XML file configuration option wereadded.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. Web Development

Contact Form for Download

Hi all, My skills in Web Development are shaky at best. What I want to do is have a simple form on my website. User puts in name & email address -> verification email is sent to them to make sure it is really there email. After this is confirmed, I want to send them a secure download like to... (1 Reply)
Discussion started by: fedora18
1 Replies

2. Cybersecurity

I need help with contact form

How can I change my email address from text into an image? Someone told me that this way it won't be picked up by spam bots and it will reduce spam. ---------- Post updated 09-27-09 at 12:57 AM ---------- Previous update was 09-26-09 at 10:53 AM ---------- ---------- Post updated at 12:58 AM... (0 Replies)
Discussion started by: iorgusu
0 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)