|
Posted by Harold Crump on April 18, 2005, 7:59 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 BKDotCom on April 18, 2005, 8:12 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 Harold Crump on April 19, 2005, 12:04 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 | | encryption | October 7, 2005, 8:37 pm |
| Using encryption | November 12, 2008, 1:00 pm |
| Binary Encryption | November 3, 2004, 5:53 pm |
| Slightly OT: encryption | March 11, 2005, 11:18 am |
| Asymmetric Encryption in PHP? | March 23, 2005, 10:06 pm |
| Best encryption technique | April 19, 2005, 12:11 pm |
| file encryption using PHP | June 14, 2005, 8:04 pm |
| PHP querystring encryption, | June 20, 2005, 12:06 pm |
| Oracle and Encryption | October 7, 2006, 5:14 pm |
| Email Encryption | January 23, 2007, 3:27 pm |
|