s00rk

Paul

Sep 16th, 2011
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.20 KB | None | 0 0
  1. <?php
  2. if(isset($_GET['page']))
  3. {
  4.     $page = $_GET['page'];
  5. }else{
  6.     $page = "hola";
  7. }
  8.  
  9. if(file_exists("./".$page.".php"))
  10. {
  11.     include $page.".php";
  12. }else{
  13.     echo "No existe archivo a cargar";
  14. }
  15. ?>
Advertisement
Add Comment
Please, Sign In to add comment