05-12-2009, 05:22 PM
|
#2 (permalink)
|
|
La Vida es Sueño
Join Date: Sep 2007
Location: Oldham
Posts: 2,280
Thanks: 90
|
You've not populated the $aVariables array with the items from your form. It should be something like the following:
php Code:
$aVariables = array( 'name' => $_POST[ 'name'], 'company' => $_POST[ 'company'], 'address' => $_POST[ 'address'], 'email' => $_POST[ 'email'], 'phone' => $_POST[ 'phone'] );
__________________
The man who comes back through the Door in the Wall will never be quite the same as the man who went out.
|
|
|