|
Posted by Rahul on June 28, 2007, 3:29 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 ELINTPimp on June 30, 2007, 10:25 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 Jerry Stuckle on June 30, 2007, 10:34 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 | | Zend PHP certification | September 8, 2004, 10:56 pm |
| 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 PHP5 Certification From BrainBench | July 24, 2006, 6:27 am |
| PHP5 and Zend | January 10, 2005, 11:10 am |
| Zend Certified Engineer PHP5 | October 25, 2006, 12:39 pm |
| What are pros any cons to use eaccelerator and zend optimizer on php5? | April 14, 2007, 11:28 am |
| PHP Certification | December 29, 2005, 11:50 am |
| PHP certification | December 13, 2006, 3:22 pm |
| PHP Certification | March 19, 2008, 7:50 am |
|