I'm not even going to pretend like I know what I'm doing - I hired this out and haven't been able to get the web folks to fix this so am attempting myself - but I have a form that the end user completes, and then I receive an email that they've completed it. The email is supposed to return the information they completed.
It comes back as follows:
has just submitted a Contact Us form from the website.
Name =
Email =
Company =
Phone =
Project =
Address =
City =
State =
Zip =
where did you hear about us =
Their Comments =
Here's what a of the php file looks like:
<input name="name" type="text" class="contact_pagename" id="name" tabindex="1" />
The "other" file looks like this:
<? //admin email goes out
$message = "$_POST[name] has just submitted a Contact Us form from the website.
Name = $POST[name]
Email = $POST[email]
Company = $POST[company]
Phone = $POST[phone]
Project = $POST[describes]
Budget = $POST[budget]
Address = $POST[street]
City = $POST[city]
State = $POST[state]
Zip = $POST[zip]
where did you hear about us = $POST[where]
Their Comments = $POST[comments]"
From what I can gather, everything is there - what's missing?