|
Posted by rb on June 29, 2006, 9:56 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 Andy Hassall on June 29, 2006, 5:38 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 rb on June 30, 2006, 6:25 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 | | 2 pics in layers | June 8, 2005, 6:51 pm |
| Script to be able to upload pics? | October 10, 2006, 9:20 pm |
| Want to see funny pics and clips? | July 21, 2008, 4:58 am |
| Creating a web forum | December 17, 2004, 12:47 pm |
| creating subdomains using php | January 11, 2005, 11:47 pm |
| Creating a .ico file with php, is it possible? | February 4, 2005, 9:04 am |
| creating subdomains using php | June 1, 2005, 1:43 am |
| Creating a schedule | September 19, 2005, 6:24 am |
| Creating a schedule | September 19, 2005, 6:27 am |
| Creating a blog... | November 14, 2005, 10:26 am |
|