Contact Form

Get a hold of someone with this contact form.

Usage

Pretty self-explanatory.

Comments

Posted on 20.10.2008 02:11 by curtis

You might want to strip newlines from $_POST['name'] to prevent header injection.

$name = str_replace(array("\r","\n"), '', $_POST['name']);
?>