|
Posted by =?ISO-8859-1?Q?Stefan_Schw=E4r on September 7, 2006, 8:49 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 ZeldorBlat on September 7, 2006, 10: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
|
|
Posted by =?ISO-8859-1?Q?Stefan_Schw=E4r on September 7, 2006, 10:43 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 Chung Leong on September 7, 2006, 11:51 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 =?ISO-8859-1?Q?Stefan_Schw=E4r on September 7, 2006, 12:27 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 | | how get differences between text files: help!? | January 20, 2007, 2:29 pm |
| Differences with imap_headerinfo() between PHP 4.3.11 and 4.4.0? | August 14, 2005, 5:12 am |
| Differences between Python and PHP | December 17, 2005, 9:59 pm |
| Version differences | January 11, 2006, 9:51 pm |
| Doubts about environment differences between php and asp | July 16, 2008, 3:59 pm |
| php find differences in multi dimensional arrays | November 3, 2006, 12:56 pm |
| Comparing Pages and Returning Differences as Regular Expressions | July 27, 2004, 6:19 pm |
| Some php files in same directory of working files with same permissions won't process | November 2, 2006, 10:33 pm |
| how can you use flash files while NOT allowing users to get those files? | January 13, 2006, 2:01 pm |
| user uploaded files -- max # of files per directory? | May 27, 2008, 9:24 pm |
|