i think what you're trying to do is

<?php
if($REQUEST_METHOD == "POST")
{
    echo "Form has been submitted.";
    exit;
}
else
{
    echo "Display the form that has to be submitted.':
    exit;
}
?>


"Preston Wade" <[EMAIL PROTECTED]> wrote in message
[EMAIL PROTECTED]">news:[EMAIL PROTECTED]...
> Hello All,
>
> I am trying to use the isset function to test if the page has been
> submitted, but it seems as though it is not working.  I am wondering is
> there a configuration option that is messing with the functionality of
> isset.
>
> Any help would be appreciated.
>
> Thanks,
> Preston Wade
>



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

Reply via email to