On Tue, Jun 26, 2001 at 12:13:28PM -0700, Richard Kurth wrote:
> I have a function that is for sending an e-mail to the customer

This is probably where your problem is.  $hostname, $domain, $tld,
and $fullname have to be defined in the function.  Try echoing them
inside of the function.  You should either pass them to the function:

function($hostname, $domain, $tld, $fullname);

or declare them as global inside of the function.

function() {
   global $hostname, $domain, $tld, $fullname);
   
-- 
Jason Stechschulte
[EMAIL PROTECTED]
--
Oh yeah.  Forgot about those.  Getting senile, I guess...
             -- Larry Wall in <[EMAIL PROTECTED]>

-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to