Posted by Toby Inkster on 02/23/06 10:59
sirboom wrote:
> I'm looking to develop an XHTML Basic web site specifically intended to work
> on mobile / handheld devices. I foresee no problem with doing that, except
> for one specific necessity that does not seem to be addressed. I need to
> send commands to the server through a URL when the user clicks an image,
> button, etc.
Use a link / use a form:
<a href="http://example.com/cgi?do=action">...</a>
<form action="http://example.com/cgi">
<div>
<input type="hidden" name="do" value="action" />
<input type="submit" />
</div>
</form>
--
Toby A Inkster BSc (Hons) ARCS
Contact Me ~ http://tobyinkster.co.uk/contact
[Back to original message]
|