Print recursive in pre-formatted tags
Copy this code and paste it in your HTML
<?php
/**
* Wraps content in <pre> tags. Useful for using with arrays of data.
*
* @version 1.0
* @author Andrew Hart
*
* @param string $content The content to wrap in <pre> tags.
*/
function pre_wrap($data)
{
}
?>
Report this snippet