in reply to cgi problem

The problem is with your HTML form, each <INPUT ...> is wrong, they should read:

<INPUT type="text" name="company" size="35" autocomplete="OFF">
rather than:
<INPUT type="text" company="company" size="35" autocomplete="OFF">
and the same for all others.

Hope this helps, -gjb-

Replies are listed 'Best First'.
Re: Re: cgi problem
by Anonymous Monk on Dec 23, 2002 at 02:54 UTC
    Thanks,

    Once again bitten by copy and paste