|
Posted by Krustov on March 28, 2007, 2:40 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 Rami Elomaa on March 28, 2007, 3:13 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 Krustov on March 28, 2007, 3:44 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 | | Whois IP search integrated into website. | February 12, 2005, 2:11 pm |
| implementing a website search feature using php | July 16, 2008, 1:51 pm |
| Market Your Business Website On Search Engines | May 31, 2007, 11:14 pm |
| enable keyword search on website whith in mysql database , windowsplatform | June 5, 2008, 1:31 am |
| Programming PHP offline | April 30, 2007, 9:43 am |
| pear all packages for offline use | May 31, 2006, 1:36 pm |
| How do I do an offline install of PEAR? | February 6, 2008, 10:22 am |
| Offline php documentation with user notes | May 3, 2005, 2:36 pm |
| Offline script testing question | September 28, 2005, 10:44 pm |
| Pear Pkgs for Offline WinXP Machine | October 21, 2005, 4:36 pm |
|