|
Posted by adam on November 16, 2004, 2:07 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 Bent Stigsen on November 17, 2004, 6:33 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 adam on November 17, 2004, 11:28 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 Michael Fesser on November 17, 2004, 8:44 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 | | How to display database table data in a html table. | January 26, 2007, 12:19 pm |
| Display sql query output in html table | June 23, 2006, 2:44 pm |
| update mysql blob with another blob using php | September 10, 2005, 10:36 am |
| Newbie: How to display query result in table? | July 6, 2006, 12:36 am |
| the function to switch values ie for alternating between 2 colors in table display | July 12, 2006, 4:26 am |
| Toggle/Preserve table display state through refresh with cookies. | December 13, 2007, 3:14 pm |
| Display HTML before PHP output? | September 8, 2004, 12:39 am |
| Display a new html, after the data is store? | May 8, 2005, 7:36 pm |
| Re: PHP-gen'd images won't display in HTML | December 28, 2006, 6:10 pm |
| list of sybmols like to display > on html page > and which are others | April 2, 2005, 5:40 am |
|