> I always use "InputImageName_x > 0" to know if a button was clicked.
>
> How can I get the value on my input type=image?
You can't.
> Like: <input type=image name=contatc value="002545645">
>
> how can I get "002545645" with "$contatc"?
Well, okay, what you *COULD* do is something like this:
<input type=hidden name=images[contata] value=002545643>
<input type=hidden name=images[contatb] value=002545644>
<input type=hidden name=images[contatc] value=002545645>
<input type=image name=contata>
<input type=image name=contatb>
<input type=image name=contatc>
--------------------
<?php
if (isset($contata_x)){
$code = $images['contata'];
}
elseif (isset($contatb_x)){
$code = $images['contatb'];
}
elseif (isset($contatc_x)){
$code = $imgaes['contatc'];
}
# more PHP here
?>
--
WARNING [EMAIL PROTECTED] address is an endangered species -- Use
[EMAIL PROTECTED]
Wanna help me out? Like Music? Buy a CD: http://l-i-e.com/artists.htm
Volunteer a little time: http://chatmusic.com/volunteer.htm
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]