|
Posted by Jim de las Alas on March 8, 2005, 10:36 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 Michael Fesser on March 8, 2005, 11:45 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 Jim de las Alas on March 8, 2005, 11:38 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 Michael Fesser on March 9, 2005, 2:47 am
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 | | Download Free! | January 24, 2009, 8:23 am |
| OOT:Free download PHP n My Sql ebook.. | June 11, 2007, 9:41 am |
| a lot of free ebook download here | October 10, 2009, 11:39 am |
| Free Today... Download PC Bug Doctor Now! | April 2, 2009, 1:14 am |
| Free software download 16631 | December 20, 2009, 4:30 pm |
| PHP/PostgreSQL Job Hunter Software Download or Use for free | July 18, 2005, 4:41 pm |
| Download Free Weather Report Toolbar - | February 19, 2008, 5:44 am |
| Download HiYo 7.00.1579 - A free add-on for Messenger ... | November 13, 2008, 1:48 pm |
| To download RocketTheme RT Dominion - Joomla Template free just visit | February 27, 2010, 12:51 pm |
| Hotbar free download : Hotbar adds a toolbar to ... | November 16, 2008, 5:58 am |
|
> include('http://www.your.domain/next_page.php?foo=bar');