Hi
I am trying to echo a get variable simply to get an image submitted via a form (cant use POST for other reasons) dislayed on the following page. SImply like this...
<img src="images/<?php echo $_GET['image']; ?>"
Problem is that if the image uploaded has a name such as:
"my%20image%20upload.jpg" (i.e. it has %20 instead of white space)
The the GET echo strips out the %20's to give me html code like:
<img src="my image upload">
...and ebcause the image is saved on the server as my%20image%20upload.jpg it therefore wont display
Anybody got any advice how to get around this?
Thanks
Glynster