Advertisement
Guest User

Untitled

a guest
Dec 27th, 2012
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.18 KB | None | 0 0
  1. <?php
  2.  
  3. class foo {
  4.  
  5. //... class goes here ...
  6.  
  7. }
  8.  
  9. ?>
  10. <html>
  11. <!-- all of my page stuff and CSS goes here -->
  12. <?php
  13. $myClass = new foo();
  14. $myClass->output();
  15. ?>
  16. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement