I'm looking for a solution where users can copy/paste PHP code into a textbox and it will be highlighted like it is inside an IDE. (Like stackoverflow does when you paste a code snippet) Any links/ideas/more information would be appreciated.
A:
Two sites that I use are gist.github.com and codepad.org. You might want to check out what libraries they're using, or just take advantage of their sites and avoid the work yourself by linking through to 'em.
Tchalvak
2009-11-17 17:04:23
+1
A:
You can use PHP's highlight_string
Very simple example...
<form action="" method="post">
<textarea name="str"></textarea>
<input type="submit">
</form>
<?php
highlight_string($_POST['str']);
?>
Galen
2009-11-17 17:48:35