I am a newbie (just to get that out of the way).
I have written a simple form which works fine.
What I need to do is capture the output from the buffer and email to support as an html file.
In php.ini:
Output Buffer = ON
Output Handler = NULL
Implicit Flush = ON
Are these settings correct?
The code I have:
<html>
<head>
<title>Signature</title>
</head>
<body>
<?PHP
$name=$HTTP_POST_VARS['name'];
$title=$HTTP_POST_VARS['title'];
$direct=$HTTP_POST_VARS['direct'];
$toll=$HTTP_POST_VARS['toll'];
$fax=$HTTP_POST_VARS['fax'];
$email=$HTTP_POST_VARS['email'];
?>
<hr size=3 width="100%" noshade color="#000099">
<table border="0" width="100%">
<tr>
<td>
<font size="5"><?php echo $name ?></font><br>
<font size="4" color="#000099"><?php echo $title ?></font><br>
<font size="2"><b>Direct Dial:</b><?php echo $direct ?></font><br>
<font size="2" color="#000099"><b>Toll Free:</b><?php echo $toll ?></font><br>
<font size="2"><b>Fax:</b><?php echo $fax ?></font><br>
<a href="mailto:<?php echo $email ?>"><?php echo $email ?></a>
</td>
<td align="right">
<img border="0" src="http://www.com.jpg" alt=".com!">
</td>
</tr>
</table></td></tr></table>
<hr size=3 width="100%" noshade color="#000099" align=center>
<p>=======================================================================================================</p>
<p>CONFIDENTIALITY NOTICE: This message is
intended only for the use of the individual or entity to which it is
addressed and may contain information that is privileged, confidential or
exempt from disclosure under applicable law. If the reader of this message is
not the intended recipient or the employee or agent responsible for delivering
the message to the intended recipient, you are hereby
notified that you are strictly prohibited from printing, storing,
disseminating, distributing or copying this communication. If you have received
this communication in error, please notify us immediately by replying to the
message and deleting it from your computer. Thank You, </p>
<p>=======================================================================================================</p>
</body>
</html>
Any help appreciated.