could someone explin what is going on here?
Posted: Sun Oct 12, 2003 4:41 pm
<?
This section sets the defaults for the scripts
$msg = "First Name:$first";
$msg .= "Last Name:$last";
$msg .= "E-mail Address:$email";
$recipient = "driscolls@sgco.com";
$subject = "Feedback from A&E Form";
$mailheaders = "From: A&E Web Site <webmaster@aehangers.com>";
$mailheaders .= "Reply-To: $email";
?>
my question isnt whether it works or not. my question is how come there are many attributes attached to the same variable.
you have $msg = $first
$msg .=$last
$msg .=$email
please explain to me what is going on!!
what is the difference between $msg and $msg .
This section sets the defaults for the scripts
$msg = "First Name:$first";
$msg .= "Last Name:$last";
$msg .= "E-mail Address:$email";
$recipient = "driscolls@sgco.com";
$subject = "Feedback from A&E Form";
$mailheaders = "From: A&E Web Site <webmaster@aehangers.com>";
$mailheaders .= "Reply-To: $email";
?>
my question isnt whether it works or not. my question is how come there are many attributes attached to the same variable.
you have $msg = $first
$msg .=$last
$msg .=$email
please explain to me what is going on!!
what is the difference between $msg and $msg .