
August 24th, 2002, 02:26 AM
|
|
|
|
Join Date: Apr 2007
Location: West Plains, Mo. U.S.
Posts: 16
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
email and call_user_function
I have mail code:
function send($head ,$acqu ,$ser ,$hear){ echo "$head ";echo "$acqu ";echo "$ser ";echo "$hear "; }
$to = $email;
$subject = "Here is your Motion";
$message = "$call_user_function_send($head ,$acqu ,$ser ,$hear)";
$headers = "From: PLF<lee@plf.net>rn";
mail($to, $subject, $message, $headers);
It works great if I want my message in script and not the output. what is the problem and suggestions. This is run on a form at http://www.plf.net/motions/form/aquittal.shtml
I know I should be using php instead of ssi but one thing at a time. thank you for any help
|