Hello,

I have a serious situation.

I have 10 different values in an array of PHP.
I have 10 different images in an HTML form.
I have to assign these 10 array values to 10 images. If I click an image then the corresponding value will be display.

My PHP code is below.

PHP Code:
<?php

if(isset($_POST["img"]))
{
    echo 
$_POST["img"];
}

?>
But this is not working. Please help to overcome the situation.

Thanks & Regards.