|
Posted by ARGENTINA on December 27, 2004, 10:39 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 Tim Van Wassenhove on December 28, 2004, 8: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
|
|
Posted by rchaplin on December 28, 2004, 9:04 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 sharma on December 28, 2004, 12:02 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 | | Looking for a script to download pdf file from server | May 23, 2006, 8:59 am |
| getting data from a feed file | June 14, 2007, 10:59 am |
| Having connection timeout problem when calling a php script while downloading a file from the same server. | January 4, 2006, 5:49 am |
| Email with file attachements - How to upload file to server from browser? | February 9, 2005, 3:52 am |
| Test Server to Live server - best way of handling different file paths in scripts? | February 8, 2005, 2:41 am |
| script para grabar el archivo xml de una url rss feed | December 27, 2004, 10:21 pm |
| Try to get a file from a server by PHP | October 21, 2005, 8:00 am |
| get a pdf file from server | June 19, 2008, 1:20 pm |
| ftp always puts 1kb file on server | November 25, 2004, 10:55 am |
| How to copy a jpg file to the server | January 31, 2005, 2:53 pm |
|