<div>&lt;?php</div>
<div>$fname = &quot;yourfile.html&quot;;</div>
<div>$mycontent = &quot;Blah Blah Blah&quot;;<br>$fp = fopen($fname,&quot;w&quot;);<br>$blah = fwrite($fp,$mycontent);<br>fclose($fp);<br>?&gt;</div>
<div>&nbsp;</div>
<div>Something like this should work..</div>
<div>&nbsp;</div>
<div>Don't forget to chmod yourfile.html to be writable by PHP..</div>
<div>&nbsp;</div>
<div>-mike</div>