I am writting a G-WAN application, which will count the number of visit for different images (the images are stored on different servers).
HTML code:
<img src = "http://example.com/?sendandcount"></img>
For the sendandcount
application, after I count and record the visitor detail, I try to return an image URL like "http://abc.com/test.jpg", but it doesn't work! The "img src" tag seems to request and identify the image content only...
Do I need to get all the images from other servers first and delivery under from the gwan server? (It will cause inconsistencies as these images will change as time goes...)
Any suggestion? Thank you very much!