If you figure out how to do this successfully, please share.  I'm forced
to use SHTML for my error pages (404.shtml and whatnot), but I'd like to
get those to interact with PHP as well.

---Matt

-----Original Message-----
From: Hans Prins [mailto:[EMAIL PROTECTED] 
Sent: Friday, February 21, 2003 8:30 PM
To: [EMAIL PROTECTED]
Subject: [PHP] Re: including in shtml

Im trying to write a poll script that is easy to intergrate into other
documents of a site and thought that since shtml is a much used method,
I
want to make it available.

"Hans Prins" <[EMAIL PROTECTED]> schreef in bericht
news:[EMAIL PROTECTED]
> Hello,
>
> I have a problem with including a "test.php" into a "test.shtml" and
passing
> a variable to the "test.shtml" which should be processed in the
"test.php"
>
> the "test.php" document includes the following:
> -----------------------------------------------------------
>
> <?php
>
> if ($HTTP_GET_VARS['theValue']) {
>     print $HTTP_GET_VARS['theValue'];
> } else {
>     print"
>     <form method=\"GET\" action=\"test.shtml\">
>     <input type=\"text\" name=\"theValue\" size=\"20\">
>     <input type=\"submit\" value=\"Submit\" name=\"submit_button\">
>     </form>
>     ";
> }
>
> ?>
>
> the "test.shtml" document includes the following:
> -------------------------------------------------------------
>
> <html>
> <head>
> <title>poll</title>
> </head>
> <body>
> <!--#include virtual="test.php" -->
> </body>
> </html>
>
> I've also tried using the POST method but I got an error stating that
post
> is not a valid method in shtml.
>
> I have also considered a session variable but since a session needs to
> initiated or continued before anything is output to the browser that
wont
> work (I think).
>
> does anyone have a solution to get this to work?
>
> thanks,
> Hans
>
>



-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php





-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to