groups

name language licence
Consolidate RapidWeaver style sheets PHP Other
Directories PHP Other
PlusKit PHP Contact Form Solution PHP Other
seyDoggy Reset CSS Other
custom css link for RapidWeaver CSS Other
2 columns within columns HTML GPL 2
ExtraContent Sample - HTML Code HTML Other
Distro release information bash GPL 2

< 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 >



language: PHP
licence: Other

PlusKit PHP Contact Form Solution

options: view full snippetsend to code collector
<?php
        //start session
        session_start();
        
        //set a key, checked in mailer, prevents against 
         //spammers trying to hijack the mailer.
        $security_token = $_SESSION['security_token'] = uniqid(rand());
        
        if(!isset($_SESSION['formMessage'])) $_SESSION['formMessage'] =
                                                    'Fill in the form below to send me an email.';
        if(!isset($_SESSION['formFooter'])) $_SESSION['formFooter'] = '';
        
        if(!isset($_SESSION['form'])) $_SESSION['form'] = array();
        
        function check($field, $type = "", $value = "") {
	
(Continues...)