|
Posted by ProgDario on August 22, 2005, 7: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 Colin McKinnon on August 23, 2005, 9:12 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 ProgDario on August 23, 2005, 2:49 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 | | The most efficient encryption method? | August 11, 2006, 4:59 am |
| what's the Basic Encryption method used in mysql | February 17, 2007, 12:00 am |
| How to change output method dynamically? | February 7, 2008, 11:10 am |
| PHP Auth | March 7, 2007, 2:25 pm |
| auth module | December 21, 2007, 5:59 am |
| bugs in the PHP Auth library | October 3, 2005, 3:51 pm |
| Problem with HTTP Auth | March 18, 2006, 5:07 pm |
| Sending auth email | May 9, 2007, 4:18 pm |
| PEAR::Auth 'REMEMBER ME' Feature | February 20, 2006, 11:53 am |
| need alt. Session auth. (.htaccess php_value) | May 24, 2006, 8:50 am |
|