<?php function banner ($name) { ob_start(); include($name); $result = ob_get_contents(); ob_end_clean(); return $result; } ?>