|
Posted by WJ Zeeuwen on May 14, 2006, 8:51 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 Rik on May 14, 2006, 9:14 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 Jerry Stuckle on May 14, 2006, 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
|
| Similar Threads | Posted | | float reduced | August 27, 2005, 10:43 pm |
| Double Vs. Float | January 3, 2008, 5:18 pm |
| float to integer convertion | September 21, 2006, 3:18 am |
| converting string to float | February 15, 2007, 12:32 pm |
| problem querying a float column | April 1, 2005, 8:30 am |
| Differentr Values for intval(float) | February 18, 2006, 11:15 am |
| problems with float conversion from a string | December 6, 2007, 10:02 am |
| Difference between float, double and real? | May 22, 2008, 11:07 am |
| unix time stamp as float instead of integer? | May 23, 2005, 4:50 pm |
| MySql VCHAR column converted to float by PHP :-( | March 1, 2006, 11:24 am |
|