index.php (client)
<?php
define('prova', true);
eval (file_get_contents('http://miosito/script.php'));
?>
script.php (server)
<?php
if(!defined('prova')) die(): header('Location:/index.php');
?>
echo "test";
index.php (client)
<?php
define('prova', true);
eval (file_get_contents('http://miosito/script.php'));
?>
script.php (server)
<?php
if(!defined('prova')) die(): header('Location:/index.php');
?>
echo "test";