I'm not sure I understand the question correctly, but to get the information
entered into the form back to the server, the form has to be submitted. You
can use multiple submit buttons with different names and labels, but if you
want a link to do the submit, you use javascript.

<form name="myform" action="handle-data.php">
Search: <input type='text' name='query'>
<A href="javascript: submitform()">Search</A>
</form>
 <SCRIPT language="JavaScript">
function submitform()
{
  document.myform.submit();
}
</SCRIPT>


Is that what you were asking?


On 2/10/06, Christian Cypert <[EMAIL PROTECTED]> wrote:
>
> I have a link on a web form using Fusebox, but I need to pass the
> form variables back through to the resulting fuse. How should I go
> about doing that? I was planning on using build query string, but in
> the resulting fuse I need to access the form vars. What would be the
> most efficient way of doing this (sending the form variables through
> and then accessing the vars)?
>
> $query := build query string("-a-"; "formVars"; ???)%>
> <a href="<%=fusebox.makeURL($XFA_onTool;$query)%>">Choose Tool</a>
>
> Thanks,
>
> Christian Cypert
> [EMAIL PROTECTED]
>
> We have normality. I repeat, we have normality. Anything you still
> can't cope with is therefore your own problem.
> - Douglas Adams
>
>
> _______________________________________________
> Active4D-dev mailing list
> [email protected]
> http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
> Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/
>
_______________________________________________
Active4D-dev mailing list
[email protected]
http://mailman.aparajitaworld.com/mailman/listinfo/active4d-dev
Archives: http://mailman.aparajitaworld.com/archive/active4d-dev/

Reply via email to