|
Posted by eholz1 on April 29, 2007, 2:10 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 Rami Elomaa on April 29, 2007, 3:12 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 eholz1 on April 29, 2007, 4: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 Toby A Inkster on April 30, 2007, 8: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 | | Accessing Class Method | September 17, 2007, 8:13 am |
| Trouble accessing class member variable | September 19, 2004, 9:00 am |
| [PHP4] accessing constants outside class body | December 21, 2005, 12:24 pm |
| Accessing variables from parent class - what's the proper way? | January 6, 2009, 4:44 pm |
| Accessing files from a different drive | January 25, 2005, 6:21 pm |
| Accessing php files over lan problem | March 13, 2008, 10:02 am |
| accessing text files under modification | April 26, 2005, 3:32 pm |
| accessing files which are not in a public web area | July 7, 2007, 4:42 pm |
| Accessing constant and static members of a class name held in a variable | March 3, 2006, 10:23 am |
| accessing static member if class name is a variable (crosspost php.general) | May 4, 2006, 8:11 am |
|