iPixel Posted October 2, 2008 Share Posted October 2, 2008 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! Quote Link to comment Share on other sites More sharing options...
trq Posted October 2, 2008 Share Posted October 2, 2008 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); ?> ?> Quote Link to comment Share on other sites More sharing options...
iPixel Posted October 2, 2008 Author Share Posted October 2, 2008 Well i wish it wasnt so simple at least then i wouldnt feel like a complete nub! Thank You! Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.