I built a webpage that allows the user to upload images and they can see each other's uploaded images.
The webpage that displays image link has the code <img src="getimage.php?path=$filePath"> in order to pass the image path to getimage.php (where getimage.php read image file), which is on C:/user/image/image_name.jpg. The user can know where exactly images are stored on the server by right clicking the image and select the property.
Although I can pass something else, like unique ID, instead of the image path. I don't want the user to know anything related to table information in mysql.
Is there any way I can disable image property on the client side? Would it be cheated by client user?
Thank you.