Thanks John, that did the trick.

I'm curious though, the PHP book I'm reading (PHP and PostgeSQL, Advanced web programming) specifically states that it's not necessary to grab form variables in this way, claiming PHP extracts all form variables behind the scenes for you. Was my original syntax something that used to be supported but has since been deprecated?

Ken

On Oct 23, 2004, at 10:13 AM, John Holmes wrote:

if(isset($_POST['view']))
{
        echo $_POST['publication'] . '<br />' . $_POST['view'];
}

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



Reply via email to