For example:
PHP Code:
function stripslashes_deep($value) {
$value = is_array($value) ? array_map('stripslashes_deep', $value) : (isset($value) ? stripslashes($value) : null);
return $value;
}
|
Light Poster
|
|
| 21Jan2007,10:07 | #1 |
|
Does anyone know a wysiwyg editor with code syntax highlighting like this one that vbulletin has?
For example: PHP Code:
|
|
Team Leader
|
![]() |
| 28Jan2007,10:08 | #2 |
|
Light Poster
|
|
| 28Jan2007,22:04 | #3 |
|
Yeah I know this but I want something already built if possible. Thank you for reading anyways.
|
|
Go4Expert Founder
|
![]() |
| 29Jan2007,09:45 | #4 |
|
Quote:
Originally Posted by manilodisan |