|
|
|
|
Posted by frustratedcoder on March 12, 2006, 2:36 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 David Haynes on March 12, 2006, 8:16 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 frustratedcoder on March 12, 2006, 12:14 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 David Haynes on March 12, 2006, 3:15 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 frustratedcoder on March 15, 2006, 4:37 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 | | Problem: PEAR SOAP => PHP5 SOAP | August 16, 2004, 9:49 am |
| PHP5, Windows Installer and MySQL | December 7, 2004, 7:49 pm |
| how to configure PHP5 to use MySQL in Windows XP | February 20, 2008, 5:09 am |
| PHP5 installation with MySQL, Windows 2000 | March 22, 2005, 7:21 pm |
| PHP5 installation with MySQL, Windows 2000 | March 22, 2005, 7:30 pm |
| newbie: configuration of MySQL in PHP5 (Windows XP) | March 15, 2008, 11:16 am |
| PHP5.05, Mysql4.1, Apache on Windows XP - cant get php to talk to mysql | October 2, 2005, 12:24 pm |
| SOAP, SSL and PHP5 | October 18, 2005, 5:26 pm |
| PHP5 SOAP and https | December 15, 2005, 1:45 am |
| PHP5 SOAP Attributes (Redux) | February 10, 2006, 1:41 pm |
|
|
|
|