[ic] area mv_arg ...?

Rene Hertell interchange-users@icdevgroup.org
Mon Aug 19 04:47:00 2002


> > > ok, now why can't I do an
> > >
> > > [if cgi BVPage="Budget"] [/if]
> > >
> > >
> > > _Am (really getting confused now...)
> > >
> >
> > Post in context and read the docs.
> >
> > http://www.icdevgroup.org/cgi-bin/ic/docfly.html?mv_arg=ictags04%2e37
> 
> I did read the docs.  Other forms that I've tried are:
> 
> [if type=explicit compare=`
>                         $cgi->{BVPage} =~ /^Budget/
>                         `]
> 
> and
> 
> [if cgi BVPage =~ /^Budget/]

Try:
[if term="[cgi BVPage]" op="eq" compare="Budget"]
  [then]stuff[/then]
  [else]otherstuff[/else]
[/if]

Rene