On Wed, 22 May 2002 [EMAIL PROTECTED] wrote:
> I have two images on my html form - one for submit and the other for skip
> with name="mode_skip".
> In my php script I want to check if user clicked on skip image but
> isset($_REQUEST["mode_skip"]) and !empty($_REQUEST["mode_skip"]) seems to
> always return true.
> In URL submitted I saw ...&mode_skip.x=X&mode_skip.y=Y.
> How can I determin if skip image was clicked.

It'll probably be $_REQUEST['mode_skip_x'] (and .._y if you're interested 
in the particular coordinates).

miguel


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to