|
Posted by Sebastian Stein on February 11, 2007, 7:50 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 Fred of UrlBit.Us on February 11, 2007, 8: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 Curtis on February 12, 2007, 2:29 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 11, 2007, 8:48 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 | | Does this Auth script have an unwanted loop? | November 1, 2006, 2:09 pm |
| Please check my auth login script | June 5, 2008, 6:40 pm |
| Class to generate images | April 17, 2007, 11:55 am |
| bash script that generate PHP from SQL | February 11, 2005, 8:24 am |
| script to generate an external link | May 28, 2007, 4:06 pm |
| Newbie: How to generate multiple web pages with one PHP script | January 20, 2007, 12:44 pm |
| Posting a form to another script ? | May 23, 2005, 12:13 pm |
| Re: OWA: 'Posting a Login' From Outside Script? | July 16, 2008, 4:59 pm |
| looking for script to remove/add images | December 31, 2006, 2:59 pm |
| Problems uploading images with script | March 25, 2008, 8:01 am |
|