Quantcast
Channel: Tópicos
Viewing all articles
Browse latest Browse all 14700

Função está a dar erro

$
0
0
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");
                ?>

Viewing all articles
Browse latest Browse all 14700

Trending Articles