|
Posted by yoelgold on February 8, 2005, 2:37 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 yoelgold on February 8, 2005, 2:56 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 ggg@gg.com on February 8, 2005, 11:59 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 | | multiple forms within a Switch statement | May 17, 2005, 1:59 pm |
| Multiple forms in one iframe container | July 26, 2007, 3:31 am |
| Re: Creating Multiple Record Update Forms | July 8, 2004, 3:13 pm |
| "PHP - MULTIPLE FORMS - SWITCH case: "(what Structure to use) | May 17, 2005, 1:39 pm |
| Problem with submitting multiple hidden forms | October 1, 2007, 8:27 am |
| Tough designing and PHPing at the same time | July 3, 2005, 9:23 pm |
| Where can I get PHP source code? | July 13, 2005, 10:34 am |
| protect source code | October 5, 2004, 6:26 pm |
| Source code Bug or Feature? | October 18, 2005, 2:53 pm |
| source code security | June 10, 2006, 12:35 pm |
|