|
Posted by Karl Groves on March 23, 2006, 10:41 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 March 23, 2006, 1:16 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 Andy Jeffries on March 24, 2006, 6:03 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 | | PHP Training with 100% Job Guarantee | June 23, 2008, 3:52 am |
| php|arch Training Course - Any feedback? | September 19, 2004, 6:14 pm |
| OT: TechSkills training worth it? | October 19, 2005, 2:39 pm |
| ONLINE TRAINING FOR SAP AND NET WEAVER | February 1, 2008, 3:12 am |
| Job Oriented Job Guarantee Training | June 26, 2008, 11:05 pm |
| PHP Certification | December 29, 2005, 11:50 am |
| 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 |
|