Date: 09/30/00
- Next message: Remco Chang: "[PHP] string concat with < and >"
- Previous message: Mark Maggelet: "Re: [PHP] problem with image button"
- In reply to: Mark Maggelet: "[PHP] problem with image button"
- Next in thread: Chris Hayes: "[PHP] Re: problem with image button"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
On Sat, 30 Sep 2000, Mark Maggelet wrote:
> Hi there,
>
> Let's say I have a form with three image buttons:
> <input type=image name=add src="add.gif">
> <input type=image name=delete src="delete.gif">
> <input type=image name=update src="update.gif">
>
> when I process the form I want to see what button was pressed, but
> instead of add being set, add.x and add.y get set.
>
> now the question is: what's the best way to check which one is set
> since doing this:
>
> if(isset($add.x)) ...
>
> gives a parse error?
>
> thanks,
> - Mark
I think that dots are converted to underscores so try
if (isset($add_x))
HTH
-- Meir Kriheli MKsoft computer systems"There's someone in my head but it's not me" - Pink Floyd
-- PHP General Mailing List (http://www.php.net/) To unsubscribe, e-mail: php-general-unsubscribe <email protected> For additional commands, e-mail: php-general-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: Remco Chang: "[PHP] string concat with < and >"
- Previous message: Mark Maggelet: "Re: [PHP] problem with image button"
- In reply to: Mark Maggelet: "[PHP] problem with image button"
- Next in thread: Chris Hayes: "[PHP] Re: problem with image button"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

