is there a browser which can log what headers send or receive?
I have many images in my page which returned with eg: index.php?image 1.png
I saw, when I use directly link:
<img src=image1.jpg>
browser never reloads image (caching) but when I use php link
<img src="index.php? image1.jpg">
browser always reload the image
why?
I have many images in my page which returned with eg: index.php?image 1.png
I saw, when I use directly link:
<img src=image1.jpg>
browser never reloads image (caching) but when I use php link
<img src="index.php? image1.jpg">
browser always reload the image
why?
Comment