[EMAIL PROTECTED] wrote:
> Hi, there. I am a perl newbie. I just was curious how I can convert this:
> $q -> start_form({action => $q -> url()}) .
> 
> (Where url = www.domain.com)
> 
> to turn url into
> www.domain.com/form.htm
>
> I don't know how to edit that line to do it
> 
> Just figured I'd ask before spending hours trying to figure it out ;)

The simplest is:
$q->start_form({action => 'www.domain.com/form.htm'});

or you can use a relative address:
$q->start_form({action => 'form.htm'});

Best Wishes,
Andrea

-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to