|
comp.lang.php - PHP programming language discussions
|
|
|
|
|
Posted by WebXTC on March 8, 2006, 6:08 pm
Please log in for more thread options
Kimmo Laine wrote:
show/hide quoted text
> <?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.
show/hide quoted text
> exit();
next_page.php
<?php
if (isset($_GET['foo'])) {
show/hide quoted text
echo '<?php echo $_GET[\'foo\']; ?>';
} else {
show/hide quoted text
echo '<?php echo \'Not available\'; ?>';
}
--
File not found: (R)esume, (R)etry, (R)erun, (R)eturn, (R)eboot
|
|
Posted by Laeronai on March 8, 2006, 11:04 pm
Please log in for more thread options
Kimmo Laine wrote:
show/hide quoted text
> <?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.
show/hide quoted text
> exit();
next_page.php
<?php
if (isset($_GET['foo'])) {
show/hide quoted text
echo '<?php echo $_GET[\'foo\']; ?>';
} else {
show/hide quoted text
echo '<?php echo \'Not available\'; ?>';
}
--
File not found: (R)esume, (R)etry, (R)erun, (R)eturn, (R)eboot
|
|
Posted by Laeronai on March 8, 2006, 11:11 pm
Please log in for more thread options Kimmo Laine wrote:
show/hide quoted text
> <?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.
show/hide quoted text
> exit();
next_page.php
<?php
if (isset($_GET['foo'])) {
show/hide quoted text
echo '<?php echo $_GET[\'foo\']; ?>';
} else {
show/hide quoted text
echo '<?php echo \'Not available\'; ?>';
}
--
File not found: (R)esume, (R)etry, (R)erun, (R)eturn, (R)eboot
|
| Similar Threads | Posted | | PHP and Flash | January 4, 2005, 7:19 am |
| FLASH MX | March 8, 2006, 6:08 pm |
| re:FLASH MX | March 8, 2006, 6:08 pm |
| PHP Flash | January 24, 2007, 10:20 am |
| Flash 2 PHP | May 2, 2008, 6:39 pm |
| php variable to flash | January 31, 2005, 8:04 pm |
| PHP and Flash movies | March 16, 2005, 5:37 pm |
| Flash problem | April 26, 2005, 11:45 am |
| php email & flash | April 26, 2005, 12:40 pm |
| talking between flash and php | October 4, 2005, 1:05 pm |
|
|
> include('http://www.your.domain/next_page.php?foo=bar');