Hi,
I store paths of images in MySQL and later query the database and display a thumbnail with a link to the original image.
The problem is with filenames that have spaces in them. Although they are stored fine in the database, when I reference the path the image is not displayed in the browser.
I know that this happens because linux does not like spaces in filenames and escapes them with a backslash.
I have no control on how the users save the images, in order not to allow spaces.
Additionally the images are not uploaded.
Is there a way around this problem?
Thanks