|
Posted by gsb on October 26, 2004, 7:46 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 adam on October 27, 2004, 7:55 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 Geoff Berrow on November 1, 2004, 5:36 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 | | Loading png images into a mysql table/database | December 21, 2006, 8:41 pm |
| Create Hyperlinked Images within a Auto Cascading Table PHP | August 16, 2006, 8:38 am |
| mysql: how create a temp table as a copy of a existing table? | July 22, 2004, 8:56 pm |
| Mysql fetch_field gets table alias, not real table name | January 6, 2006, 8:01 am |
| Storing images into MySQL DB | July 27, 2006, 3:21 am |
| Writing Images to MySQL 4.x | September 12, 2006, 9:31 am |
| PHP, MySQL and images stored in database | October 23, 2004, 6:39 pm |
| Uploading images to mysql database | October 28, 2004, 7:56 pm |
| IE6 not display jpeg images from mysql databases | September 9, 2005, 12:48 am |
| Pulling jpeg name images out of MySQL onto PHP page | June 6, 2006, 5:12 pm |
|