|
Posted by Sven Templin on July 28, 2004, 7:23 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 Kevin Thorpe on July 28, 2004, 3:36 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 Chung Leong on July 28, 2004, 7:43 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 CJ Llewellyn on July 30, 2004, 2:47 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 Nikolai Chuvakhin on July 28, 2004, 5:26 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 | | sending mail from php and correct MS Outlook receive | January 4, 2006, 1:47 am |
| fyi - combination of outlook and php - create stationery for MS outlook using PHP engine ;-) | March 22, 2006, 4:08 am |
| images shown in Outlook Express but not in Outlook 2003 | February 12, 2007, 6:30 am |
| Can't start Outlook Instance while outlook client is running | May 1, 2007, 6:20 pm |
| php mail() not sending to mail Clients (ie, Outlook, Apple Mail, thunderbird, etc..) | November 29, 2007, 10:19 pm |
| 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 |
|