|
Posted by julian maisano on April 15, 2005, 3:47 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 Niels Berkers on April 15, 2005, 4:57 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 Matt on April 21, 2005, 4:47 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 rovisoft on April 16, 2005, 10:59 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 | | PHP store solution that allows for multiple unique storefronts per category? | January 17, 2008, 1:37 pm |
| Solution to display on a web page each second a new line wanted | August 2, 2008, 9:12 pm |
| Shared memory solution for PHP working from command line too | June 16, 2008, 8:04 am |
| CLI ( command-line ) PHP displaying source code in-line when program is executed | February 12, 2006, 9:03 am |
| PHP read large file line by line? | October 13, 2006, 5:00 am |
| CMS Solution | December 13, 2004, 8:50 pm |
| Looking for an ILS solution | April 5, 2006, 1:09 pm |
| PHP EAI Solution? (vs BizTalk) | August 4, 2004, 4:39 pm |
| any one give solution | May 16, 2007, 2:37 am |
| PHP Pattern Matching - Is there a better solution? | January 5, 2005, 1:12 pm |
|