Jump to content

Display HTML source code from PHP


alexguz79

Recommended Posts

A simple solution to at least highlight the code would be:

 

<form>
<textarea name="code" onfocus="this.select();">
<?php
echo '<html>';
echo '<body>';
echo '<p>Hello World</p>';
echo '<body>';
echo '</html>';
?>
</textarea>
</form>

 

 

Of course this solution doesn't do the copy part. I would need to brush up on my JavaScript to figure that out.

I looked into doing the copy to clipboard once and it wasn't that easy to do, due to  browsers not wanting sites to access the clipboard for security reasons.

 

Photobucket managed it but they did it with flash.

 

There's a few scripts around for doing it but most are buggy.

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.