Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- if(isset($_GET['page']))
- {
- $page = $_GET['page'];
- }else{
- $page = "hola";
- }
- if(file_exists("./".$page.".php"))
- {
- include $page.".php";
- }else{
- echo "No existe archivo a cargar";
- }
- ?>
Advertisement
Add Comment
Please, Sign In to add comment