|
Posted by Michael on December 29, 2005, 11:50 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 comp.lang.php on December 29, 2005, 1:15 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 Justin Koivisto on December 29, 2005, 3:57 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 Stan McCann on January 2, 2006, 1:09 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 | | PHP certification | December 13, 2006, 3:22 pm |
| PHP Certification | March 19, 2008, 7:50 am |
| Zend PHP certification | September 8, 2004, 10:56 pm |
| Which PHP Certification is Recommended? | October 25, 2004, 1:22 pm |
| ZCE Certification Training | March 23, 2006, 10:41 am |
| Regarding Zend PHP5 certification | June 28, 2007, 3:29 am |
| Free PHP5 Certification From BrainBench | July 24, 2006, 6:27 am |
| what resources did you use to pass the Zend PHP Certification exam? | December 29, 2005, 9:53 am |
| Zend Certification PHP 5 : Difference between isset() and other is_*() functions | December 27, 2006, 11:33 am |
| Free Webinars on PMP Certification Awareness and Roadmap | July 4, 2008, 1:14 am |
|