Guest User

Untitled

a guest
Oct 22nd, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.22 KB | None | 0 0
  1. <?php
  2.  
  3.  
  4. function prettybox($class, $func_name) {
  5. echo '<div class="' . $class . '">';
  6. call_user_func($func_name);
  7. echo '</div>';
  8.  
  9. }
  10. function main_page() {
  11. echo 'This is the main page';
  12. }
  13.  
  14. prettybox('main', main_page');
  15. ?>
Add Comment
Please, Sign In to add comment