|
Posted by yes_its_just_me on December 18, 2006, 5:43 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 adlerweb on December 18, 2006, 8:35 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 seaside on December 19, 2006, 11:27 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 Ian M Robertson on December 20, 2006, 5:11 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 | | help w/ php mysql connect problem!! | August 30, 2005, 1:12 pm |
| I have problem with connect to MySQL server please help me!! | October 16, 2007, 2:13 pm |
| Please help me connect PHP to MySql - Newbie problem | July 16, 2008, 9:16 am |
| Can't connect to local MySQL server through socket '/tmp/mysql.sock' PDO exception | August 29, 2006, 1:40 pm |
| PHP & Attunity Connect problem | May 19, 2005, 7:36 am |
| phpMyAdmin connect problem | August 25, 2005, 4:03 pm |
| MS-SQL multiple connect problem | December 5, 2005, 5:17 am |
| re:PHP & Attunity Connect problem | February 21, 2006, 5:02 am |
| Can't connect to mysql from php | August 13, 2004, 4:51 am |
| Mysql can connect, but PHP can't? | May 9, 2005, 2:36 pm |
|