|
Posted by Börni on January 25, 2005, 10:05 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 Tim Van Wassenhove on January 25, 2005, 11:49 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 Janwillem Borleffs on January 26, 2005, 12:20 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 | | PHP5 Xpath problem | August 18, 2004, 11:08 am |
| Limits to XPath implementaiton in PHP5 | October 22, 2007, 5:58 pm |
| XPath help? | April 5, 2008, 12:02 pm |
| The use of fn: functions in XSL - XPath | June 23, 2005, 9:14 pm |
| xpath XML and PHP4 | November 30, 2006, 6:28 pm |
| problem with xml and xpath in PHP | July 3, 2008, 10:11 pm |
| pass variable to xpath? | February 1, 2005, 5:23 pm |
| Xpath encoding problem | February 11, 2008, 11:29 am |
| xpath query too long? | June 25, 2008, 1:43 am |
| Struggling with simple DOM/XPath usage... | February 4, 2005, 6:13 pm |
|