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! Link to comment https://forums.phpfreaks.com/topic/126774-solved-save-generated-html-as-html-file/ 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); ?> ?> Link to comment https://forums.phpfreaks.com/topic/126774-solved-save-generated-html-as-html-file/#findComment-655716 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! Link to comment https://forums.phpfreaks.com/topic/126774-solved-save-generated-html-as-html-file/#findComment-655940 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.