/ Published in: PHP
USAGE: preprint($x); <- where $x = array().
The optional 2. parameter can be set to "true", so the html-code is returned.
by - Robert Heine
Expand |
Embed | Plain Text
<?php function preprint($s, $return=false) { $x = "<pre>"; $x .= "</pre>"; if ($return) return $x; } } ?>
You need to login to post a comment.
