Share Pastebin
Guest
Public paste!

index LOLCODE

By: a guest | Jun 16th, 2009 | Syntax: PHP | Size: 0.37 KB | Hits: 106 | Expires: Never
Copy text to clipboard
  1. <?php
  2.  
  3.  
  4. include 'lolcode.class.php';
  5.  
  6. $lol = new LOLCode;
  7.  
  8. $aPaths = array_keys( $_GET );
  9.  
  10. if( !isset( $aPaths[ 0 ] ) || !strstr( $aPaths[ 0 ], '_lol' ) )
  11. {
  12.    
  13.     $pagina = 'index';
  14.    
  15. }
  16. else
  17. {
  18.    
  19.     $pagina = str_replace( '_lol', '', $aPaths[ 0 ] );
  20.    
  21. }
  22.  
  23. //$lol->bDebug = true;
  24.  
  25. $lol->display( $pagina );
  26.  
  27. ?>