$tags = ""; $fh = fopen("demo.htm", "rt"); while (!feof($fh)) { $article .= fgetss($fh, 1024, $tags); } fclose($fh); /* Open the file up in write mode and write $article contents. */ $fh = fopen("demo.html", "wt"); fwrite($fh, $article); fclose($fh); echo $article;?>
"; $fh = fopen("demo.htm", "rt"); while (!feof($fh)) { $article .= fgetss($fh, 1024, $tags); } fclose($fh); /* Open the file up in write mode and write $article contents. */ $fh = fopen("demo.html", "wt"); fwrite($fh, $article); fclose($fh); echo $article;?>