
01-24-2005, 05:53 AM
|
|
SEO Junior and a half
|
|
Join Date: Nov 2004
Posts: 70
|
|
Quote:
|
Originally Posted by jasonlee
I'm somehow doing something wrong can someone help?
$referredby = Trim($_POST[referredby]);
$commentsquestion = Trim($_POST[commentsquestion]);
I get the text "referredby:" and "commentsquestion" but the variable isnt getting put in the body variable.
|
$referredby = Trim($_POST['referredby']);
$commentsquestion = Trim($_POST['commentsquestion']);
Should add ' ' for the POST otherwise it will be empty and the results will show nothing.
Hope this helps,
__________________
- I am so far behind, I thought I was first...
|