|
Posted by G0ng on February 1, 2006, 3:08 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
|
|
Posted by Erwin Moller on February 1, 2006, 5:34 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
|
|
Posted by Justin Koivisto on February 1, 2006, 10:02 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
|
|
Posted by Gary L. Burnore on February 1, 2006, 5:19 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
|
| Similar Threads | Posted | | [OT] JOIN in MySQL | August 18, 2004, 11:21 am |
| MySQL JOIN Query--help | August 12, 2004, 6:57 am |
| JOIN table results w/MySQL | July 23, 2004, 5:04 am |
| retrieveing vars from mysql join ? | December 1, 2006, 7:06 am |
| how to have these two consequent queries become a single one by 'join' in mysql | July 22, 2007, 2:52 pm |
| unusual behaiour with MySQL LIKE and LEFT join | August 21, 2007, 10:30 am |
| php mysql show results one value | February 25, 2005, 6:42 pm |
| Re: MySQL does not show on php info | February 6, 2007, 6:58 am |
| MySQL does not show on php info | February 5, 2007, 6:45 am |
| OT: Reminder: comp.databases.mysql discussion taking place in news.groups Please Join In! | June 7, 2005, 10:23 pm |
|
> include('http://www.your.domain/next_page.php?foo=bar');