I do not know how to frame the question. And I do not know how the below tag is working...
This tag i
The value=23
only has an effect if the server uses it. The browser requests http://example.com/img.png?valud=23
, so the server will see the parameter.
For example, with PHP, if your use $_GET['value']
, and that variable changes what image is sent, then the value=23
is needed.
Parameters are often sent with images to specify a height or width, or to determine which image is loaded.