|
Posted by gruddo on May 17, 2005, 9:00 am
Please log in for more thread options
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
|
|
Posted by Alvaro G Vicario on May 17, 2005, 6:50 pm
Please log in for more thread options
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
|
|
Posted by gruddo on May 17, 2005, 12:19 pm
Please log in for more thread options 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
|
| Similar Threads | Posted | | folder and file permissions to read and write images | March 15, 2007, 1:45 pm |
| cannot unlink file that Apache and I have permissions to delete | July 28, 2004, 11:14 am |
| imagepng/jpeg/gif, permissions, Apache and CRON scripts - help | November 5, 2004, 9:44 am |
| permissions? | September 19, 2004, 4:17 pm |
| No Permissions | November 12, 2004, 12:53 pm |
| Permissions | June 22, 2005, 12:39 am |
| permissions | July 9, 2005, 5:26 pm |
| Permissions | March 4, 2006, 12:16 am |
| Permissions Oddities | August 3, 2004, 9:28 pm |
| PHP Permissions Dilemma | August 13, 2004, 1:29 pm |
|