jaxdevil Posted April 10, 2008 Share Posted April 10, 2008 Anyone know a way that I can display the html code output data, other than doing the right click and 'View Source'? SK Quote Link to comment https://forums.phpfreaks.com/topic/100488-solved-output-html-code/ Share on other sites More sharing options...
trq Posted April 10, 2008 Share Posted April 10, 2008 <?php echo htmlentities(file_get_contents("http://site.com/page.html")); ?> Quote Link to comment https://forums.phpfreaks.com/topic/100488-solved-output-html-code/#findComment-513903 Share on other sites More sharing options...
jaxdevil Posted April 10, 2008 Author Share Posted April 10, 2008 Damn, that works perfect, except I need it to display the HTML output of a PHP page. I tried that on an HTML page and that is exactly what I am trying to do, but I need it for a page that gets dynamically created in PHP, then I want to view the HTML output of that page. What I am trying to do is format a page with all the data for a person, which the PHP will draw from a SQL database, and then the person can copy and paste the html data from there to elsewhere. Any ideas? That was perfect if it worked on PHP pages. Quote Link to comment https://forums.phpfreaks.com/topic/100488-solved-output-html-code/#findComment-513905 Share on other sites More sharing options...
trq Posted April 10, 2008 Share Posted April 10, 2008 It will work on php pages. Quote Link to comment https://forums.phpfreaks.com/topic/100488-solved-output-html-code/#findComment-514028 Share on other sites More sharing options...
wildteen88 Posted April 10, 2008 Share Posted April 10, 2008 Thorpes code will work for PHP pages too! Another thought, Rather than use file_get_contents you could just save all output to a variable, say $html_output in your PHP scripts by converting your echo/print statements. Then at the bottom of the page just do: echo htmlentities($html_outut); Or a better way would be to use output buffering. Quote Link to comment https://forums.phpfreaks.com/topic/100488-solved-output-html-code/#findComment-514032 Share on other sites More sharing options...
jaxdevil Posted April 10, 2008 Author Share Posted April 10, 2008 I just retried it on a PHP page and it works.. AWESOME! I must have typed something wrong before. Thank you! ;D SK Quote Link to comment https://forums.phpfreaks.com/topic/100488-solved-output-html-code/#findComment-514037 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.