|
Posted by joe on November 18, 2005, 1: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 Raqueeb Hassan on November 19, 2005, 3:56 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 joe on November 20, 2005, 10: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
|
| Similar Threads | Posted | | SQLite DB using without SQLite Extension | September 5, 2005, 12:40 pm |
| sqlite with PDO and sqlite extension | July 4, 2008, 6:24 am |
| sqlite/PHP under OS X | June 19, 2008, 5:22 pm |
| Upgrading SQLite in PHP 5 | January 24, 2005, 12:39 pm |
| New PHP Releases and PDO SQLite | July 5, 2006, 8:55 am |
| SQLite Version 2.1? | January 23, 2007, 8:26 am |
| Escaping SQLite | October 1, 2007, 1:52 am |
| Best Practice -- PDO, SQLite? | November 5, 2007, 10:50 pm |
| Using SQLite from PHP w/out recompiling? | January 20, 2008, 3:42 pm |
| SQLite installation php4 OSX | July 19, 2005, 3:54 pm |
|