For some reason when I upload an image to my db, a space is inserted before the filename. So it looks like this,
"images/ file.jpg". I can manually go in and remove the space and then it works, but obviously that's not how i want it to function.
This is the code I'm using:
echo '<img src="../conferences/images/'.$row['image'].'" width="400" height="235" border="0"> <br />';
Any ideas why this is? Is it something in my db that i can go in and edit? I can't find it if it is. Thanks so much for your help.