Sorry for the last post it is line 33

As follows

// string start_form ([string action [, array attributes]])

// This function returns an HTML <form> tag. If the first argument
// is empty, the value of the global Apache variable SCRIPT_NAME
// is used for the 'action' attribute of the <form> tag. Other
// attributes for the form can be specified in the optional second
// argument; the default method of the form is "post".

// The behavior of this function on servers other than Apache is
// not known. It's likely that it will work, as SCRIPT_NAME is
// part of the CGI 1.1 specification.

function start_form ($action="", $atts="")
{
        global $SCRIPT_NAME;

        if (empty($action)) { $action = $SCRIPT_NAME; }
        
        $attlist = get_attlist($atts,array("method"=>"post"));
        $output = <<<EOQ          //this is line 33//
<form action="$action" $attlist>
EOQ;
        return $output;
}


*************

Remember I'm running php3 I'm going to look at the manuel from 
switching  php3 to 4 and see if it mentions anything.

I'm still very new to php

Thanks

Darren



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]

Reply via email to