I have this written, but when I run it...I get error:
Parse error: parse error, unexpected T_DEC in C:\Inetpub\wwwroot\web\sendmixed.php on line 27
What needs to be fixed? Help
#define the message section
$hdr .= "Content-Type: text/plain\r\n";
$hdr .= "Content-Transfer-Encoding: 8bit\r\n\n";
$hdr .= "$comments\r\n;
$hdr .= "--$num\n";
#define the attachment section
$hdr .= "Content-Type: $att_type; ";
$hdr .= "name=\"$att_name\"\r\n";
$hdr .= "Content-Transfer-Encoding: bas64\r\n";
$hdr .= "Content-Disposition: attachment; ";
$hdr .= "filename=\"$att_name\"\r\n\n";
$hdr .= "$file\r\n";
$hdr .= ""--$num--";
#send the email now
mail( $to, $re, "", $hdr);
#close the file
fclose($file);
?>