Click to See Complete Forum and Search --> : using php to write to html pages


rms230
07-22-2006, 10:09 AM
can anyone give me tips on how to write to a blank html file using php

Vectorman211
07-22-2006, 10:13 AM
create a file called whatever.php


<?
echo "<HTML><HEAD></HEAD><BODY>\n";
echo "</BODY></HTML>\n";
?>


There we have it, a blank HTML page!

NogDog
07-22-2006, 10:20 AM
I suspect we need a bit more information as to what exactly you want to do.