Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> Re: WebServer hidden forms and passing varriables
>htp.header (2,'Associate Director '||p_ad);
>htp.UlistOpen;
> for I IN C2 LOOP
> htp.listItem ('<a href="skills (p_who='||i.leaderid||')">'
> ||i.ldr_frst_nm||' '||i.ldr_last_nm||' -
>'||i.team_nm);
>(the above line is the problem. I want it to generate a link that will
>call the PROC skill (p_who).)
<A
HREF="package.function?param1=word1+word2¶m2=7634.43¶m3=sdfsdf"....
The above is the general syntax for calling a function within a package with parameters. You should read up on HTML for how parameters are passed. The web server interprets HTML parameters being passed in as function parameters of the same name...
-- Cheers Fred ---------------------------------------------------------------------------- ----------------- Fred Hirschfeld Sierra Systems Consultants Inc fhirsch_at_rogers.wave.ca Vancouver, BC (604)688-1371 http://www.sierrasys.com/Received on Wed Oct 15 1997 - 00:00:00 CDT
![]() |
![]() |