|
Posted by Adrian on November 1, 2006, 7:00 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 Benjamin on November 1, 2006, 9:55 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 David Gillen on November 2, 2006, 9:24 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
|
| Similar Threads | Posted | | Creating link to file or temp file for user download | June 20, 2005, 10:42 am |
| Hiding download link | October 17, 2005, 4:08 pm |
| need to create and make download link for csv | September 18, 2006, 5:10 pm |
| Help: Creating a web link using HTML, php and MySQL. Help | February 15, 2008, 12:19 pm |
| Help Again: Creating a web link using HTML, php and MySQL. Help | February 18, 2008, 12:19 pm |
| Create limited time download link | September 23, 2008, 11:48 am |
| Anyone know how to create automatic download using CURL and creating a new folder every day??? | August 7, 2007, 4:26 pm |
| Using an as a link | February 11, 2006, 11:31 pm |
| inserting a link | September 28, 2004, 6:55 pm |
| Session and link | October 20, 2004, 11:40 pm |
|