Jump to content

[SOLVED] Save Generated HTML as .html file!


iPixel

Recommended Posts

Ok long story short, i generate an html page with some data pulled from a mysql database.

I'm am trying to figure out if it's at all possible to make a button or something that will allow me to save the generated page (source code only) as a .html file. Is this duable and if you could help me out or point me in the right direction i'd really appreciate it.

 

Thanks in advance!

Link to comment
https://forums.phpfreaks.com/topic/126774-solved-save-generated-html-as-html-file/
Share on other sites

Yes its doable.

 

<?php

  ob_start();

  // code to generate page.

  $out = ob_get_contents();
  ob_end_clean();

  // now you can either echo $out (the page) to the screen.
  echo $out;
  // or write it to a file.
  file_put_contents('foo.html',$out);

?>
?>

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.