Boas a todos.
Eu tenho no meu site umas "funções" mas está a dar erro
Erro :
Notice: Undefined index: ext in C:\xampp\htdocs\index.php on line 30
Código:
<?php
$ir = $_GET['ir'];
$ext = $_POST['ext']; <------- Linha 30
if (empty($ext)) $ext="php";
if (empty($ir)) $ir = "pages/home.php"; else $ir .= ".".$ext;
if (file_exists($ir)) @include $ir; else include("error.php");
?>
Eu tenho no meu site umas "funções" mas está a dar erro
Erro :
Notice: Undefined index: ext in C:\xampp\htdocs\index.php on line 30
Código:
<?php
$ir = $_GET['ir'];
$ext = $_POST['ext']; <------- Linha 30
if (empty($ext)) $ext="php";
if (empty($ir)) $ir = "pages/home.php"; else $ir .= ".".$ext;
if (file_exists($ir)) @include $ir; else include("error.php");
?>