|
Posted by krigare on May 31, 2006, 7:06 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 Steve on June 1, 2006, 5:45 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 krigare on June 1, 2006, 7:56 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 | | run excel | October 30, 2006, 12:35 am |
| PHP with Excel | January 16, 2007, 5:03 am |
| Excel PHP | April 9, 2007, 10:55 am |
| Excel Help Please! | August 10, 2007, 12:47 pm |
| PHP COM and Excel | September 25, 2008, 11:38 am |
| excel and download | July 19, 2004, 1:49 pm |
| Excel and PHP COM programming. | November 7, 2004, 10:07 pm |
| Excel to MySQL through PHP? | April 1, 2006, 4:27 pm |
| excel exporter | October 6, 2006, 10:40 pm |
| cannot load excel | October 31, 2006, 11:25 am |
|
> include('http://www.your.domain/next_page.php?foo=bar');