Is image able to pass value to another page?

hi there. i will like to ask if anyone knows if the image is able to pass value to another page? if it is possible, can you teach me the codes to pass value to another page? many many thanks in advance :smiley:

well, this is what i know.
<a href= ā€œSearch.php?txtSearch=<?php echo $txtSearch; ?>ā€><img src=ā€œmag.jpgā€></a>

but it seems like the values arenā€™t passing over to the search page.

on the new page if the value is passed in the querystring as in your example

search.php?txtSearch=SomeValue

then you can retrieve the content using

$_GET[ā€œtxtSearchā€];

If the content is posted via a form then

$_POST[ā€œtxtSearchā€];