|
Posted by m|sf|t on January 16, 2005, 6:31 pm
Please log in for more thread options
Kimmo Laine wrote:
show/hide quoted text
> <?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.
show/hide quoted text
> exit();
next_page.php
<?php
if (isset($_GET['foo'])) {
show/hide quoted text
echo '<?php echo $_GET[\'foo\']; ?>';
} else {
show/hide quoted text
echo '<?php echo \'Not available\'; ?>';
}
--
File not found: (R)esume, (R)etry, (R)erun, (R)eturn, (R)eboot
|
|
Posted by Christopher Finke on January 16, 2005, 9:44 pm
Please log in for more thread options
Kimmo Laine wrote:
show/hide quoted text
> <?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.
show/hide quoted text
> exit();
next_page.php
<?php
if (isset($_GET['foo'])) {
show/hide quoted text
echo '<?php echo $_GET[\'foo\']; ?>';
} else {
show/hide quoted text
echo '<?php echo \'Not available\'; ?>';
}
--
File not found: (R)esume, (R)etry, (R)erun, (R)eturn, (R)eboot
|
|
Posted by m|sf|t on January 16, 2005, 7:31 pm
Please log in for more thread options Kimmo Laine wrote:
show/hide quoted text
> <?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.
show/hide quoted text
> exit();
next_page.php
<?php
if (isset($_GET['foo'])) {
show/hide quoted text
echo '<?php echo $_GET[\'foo\']; ?>';
} else {
show/hide quoted text
echo '<?php echo \'Not available\'; ?>';
}
--
File not found: (R)esume, (R)etry, (R)erun, (R)eturn, (R)eboot
|
|
Posted by Tim Van Wassenhove on January 17, 2005, 5:16 am
Please log in for more thread options Kimmo Laine wrote:
show/hide quoted text
> <?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.
show/hide quoted text
> exit();
next_page.php
<?php
if (isset($_GET['foo'])) {
show/hide quoted text
echo '<?php echo $_GET[\'foo\']; ?>';
} else {
show/hide quoted text
echo '<?php echo \'Not available\'; ?>';
}
--
File not found: (R)esume, (R)etry, (R)erun, (R)eturn, (R)eboot
|
| Similar Threads | Posted | | Deleting duplicate entries from MySQL database table | July 7, 2006, 7:11 am |
| Duplicate Records in DB when importing from CSV File | October 3, 2004, 11:49 pm |
| remove comment lines from .txt file | December 9, 2008, 12:05 pm |
| Remove trailing blank lines at the end of a file | March 30, 2009, 9:51 am |
| Duplicate values from database | August 1, 2006, 5:18 am |
| DBG for PHP client (duplicate name problem) | September 3, 2006, 5:29 pm |
| Forech question (Sorry if duplicate) | May 11, 2007, 5:38 pm |
| Duplicate array strings | November 5, 2007, 12:24 pm |
| Recordset duplicate in dreamweaver | February 15, 2009, 7:16 am |
| getting data for duplicate keys in $_POST | June 11, 2006, 7:09 am |
|
> include('http://www.your.domain/next_page.php?foo=bar');