A wysiwyg editor with bbcodes?

Light Poster
21Jan2007,10:07   #1
manilodisan's Avatar
Does anyone know a wysiwyg editor with code syntax highlighting like this one that vbulletin has?

For example:

PHP Code:
function stripslashes_deep($value) {
  
$value is_array($value) ? array_map('stripslashes_deep'$value) : (isset($value) ? stripslashes($value) : null);
  return 
$value;

Team Leader
28Jan2007,10:08   #2
coderzone's Avatar
Try out the following functions.

highlight_string
highlight_file
Light Poster
28Jan2007,22:04   #3
manilodisan's Avatar
Yeah I know this but I want something already built if possible. Thank you for reading anyways.
Go4Expert Founder
29Jan2007,09:45   #4
shabbir's Avatar
Quote:
Originally Posted by manilodisan
Yeah I know this but I want something already built if possible. Thank you for reading anyways.
I guess the functions are the built in facility.