|
Posted by McGowan on January 26, 2007, 12:19 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 Arjen on January 26, 2007, 12:46 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 Jim Dornbos on January 26, 2007, 1:06 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 Rik on January 26, 2007, 1:24 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 McGowan on January 26, 2007, 1:32 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 | | php blob - display in html table | November 16, 2004, 2:07 pm |
| Display sql query output in html table | June 23, 2006, 2:44 pm |
| to insert data in a html table | December 13, 2004, 11:53 am |
| Using arrays to take records from a html table and update database | July 25, 2006, 5:29 pm |
| SQL table data appears after html but called earlier. | November 14, 2007, 8:44 am |
| Newbie: How to display query result in table? | July 6, 2006, 12:36 am |
| What is Indexing in mysql and how it will be useful and how we can retrieve database content easily from a database table containing about 5lakhs datas | January 8, 2007, 11:25 am |
| the function to switch values ie for alternating between 2 colors in table display | July 12, 2006, 4:26 am |
| Toggle/Preserve table display state through refresh with cookies. | December 13, 2007, 3:14 pm |
| mysql: how create a temp table as a copy of a existing table? | July 22, 2004, 8:56 pm |
|