|
Posted by Advo on September 18, 2006, 5:24 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 Nick DeNardis on September 18, 2006, 6:21 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 Advo on September 18, 2006, 9: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 Nick DeNardis on September 18, 2006, 11:24 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 | | sending and receiving wrong information | June 4, 2008, 4:03 am |
| Sending sensitive information to an HTTPS page | March 21, 2007, 7:02 am |
| need help sending email from php | June 16, 2005, 5:41 pm |
| sending email with php | January 14, 2008, 9:14 pm |
| Sending email from my php registration | December 8, 2004, 2:30 am |
| 'Nobody' disallowed from sending email with PHP | September 14, 2005, 4:36 pm |
| [OT] Sending email via PHP with FROM from other domain | February 13, 2007, 10:43 am |
| Sending auth email | May 9, 2007, 4:18 pm |
| Scrip for sending an eMail via PHP and Outlook | July 28, 2004, 7:23 am |
| Problem sending email from Windows XP / Apache 2 /php 5.0 | February 1, 2005, 2:48 am |
|