|
Posted by Bruce on February 18, 2006, 11:15 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 February 18, 2006, 12:41 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 Jasen Betts on February 18, 2006, 11:03 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 | | intval(0) == ???? | February 2, 2005, 4:14 pm |
| float reduced | August 27, 2005, 10:43 pm |
| Format float | May 14, 2006, 8:51 am |
| 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 |
| 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 |
|