I had problem of writing the php data to the html, everytime i submit
the info, the data is added to the database, but not to the html file
$ourFileName = "testFile.html" ;
$ourFileHandle = fopen($ourFileN ame, 'w') or die("can't open file");
$last = trim($_POST['last']);
$comment = trim($_POST['comment']);
fwrite($ourFile Handle, "$last"\n$comme nt");
fclose($ourFile Handle);
the info, the data is added to the database, but not to the html file
$ourFileName = "testFile.html" ;
$ourFileHandle = fopen($ourFileN ame, 'w') or die("can't open file");
$last = trim($_POST['last']);
$comment = trim($_POST['comment']);
fwrite($ourFile Handle, "$last"\n$comme nt");
fclose($ourFile Handle);
Comment