|
Posted by Schraalhans Keukenmeester on May 31, 2007, 11:22 am
Kimmo Laine wrote:
> <?php
> include('http://www.your.domain/next_page.php?foo=bar ');
Unless next_page.php generates PHP, the script with this include will
only get HTML.
> exit();
next_page.php
<?php
if (isset($_GET['foo'])) {
echo '<?php echo $_GET[\'foo\']; ?>';
} else {
echo '<?php echo \'Not available\'; ?>';
}
--
File not found: (R)esume, (R)etry, (R)erun, (R)eturn, (R)eboot
|
> include('http://www.your.domain/next_page.php?foo=bar ');