tags:

views:

113

answers:

1

I'm trying to submit an HTML form to an action of an XML page. The XML page is called, for instance, myXMLPage.xml. The action name would be myAction. In the form action tag this is what I have:

<form action="myXMLPage.xml/myXMLPage.myActoin">
</form>

I know this is probably wrong, but I can't figure out what's correct. Can someone help me?

+1  A: 

Does fixing the typo solve any of the problems?

myActoin != myAction

Alex Mcp