Date: 09/30/00
- Next message: Mark Maggelet: "Re: [PHP] problem with image button"
- Previous message: Richard Heyes: "[PHP] ini_set() And ini_get()"
- In reply to: Mark Maggelet: "[PHP] problem with image button"
- Next in thread: Mark Maggelet: "Re: [PHP] problem with image button"
- Reply: Mark Maggelet: "Re: [PHP] 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?
Since $add.x is an invalid variable name, PHP has instead set $add_x.
Matt
-- 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: Mark Maggelet: "Re: [PHP] problem with image button"
- Previous message: Richard Heyes: "[PHP] ini_set() And ini_get()"
- In reply to: Mark Maggelet: "[PHP] problem with image button"
- Next in thread: Mark Maggelet: "Re: [PHP] problem with image button"
- Reply: Mark Maggelet: "Re: [PHP] problem with image button"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

