|
Posted by eric rudolph on July 3, 2005, 9:23 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 rush on July 4, 2005, 10:02 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 windandwaves on July 4, 2005, 5:29 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 Nel on July 4, 2005, 8:25 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 | | designing source code for multiple forms | February 8, 2005, 2:37 pm |
| Tough Timezone Problem | June 24, 2005, 6:34 am |
| Processing a db query - tough problem and need help | October 13, 2004, 3:40 am |
| HELP: Pretty tough issue - lets see who can figure this one out?!?! | May 5, 2005, 11:17 pm |
| deleting cookies and local browser time versus server time | January 2, 2008, 12:05 pm |
| How do I convert TIME into Cookie and last-modified-time format? | October 1, 2004, 3:05 pm |
| convertint time string to time stamp | July 9, 2004, 4:02 pm |
| time zone for mountain standard time with/without DST | July 3, 2007, 6:48 am |
| Displaying time in different time zones | May 11, 2005, 11:52 am |
| php.ini sets max time to 90 seconds, yet I get a "Max execution time of 30 seconds exceeded" | August 18, 2007, 3:35 am |
|