Hi,
I have a script that generates an image like so:
echo '<img src="image_circuit.php?circuit_id='.$id.'">';
And I would like to know how I could dynamically generate an image map for this image...
The problem I encountered is that the image_circuit.php script cannot communicate the areas of the map to the parent script.
image_circuit.php actually sends an image with the appropriate header content-type to the browser (it sends binary information), so I cannot write the image map in HTML.
How could I do that ???