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
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);

?>
?>

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.