vasilias Posted October 15, 2012 Share Posted October 15, 2012 Hi I have in one project a folder with .jpg files... they are for country flags... and i want load the images with php... echo "/images/flags/medium/$row[3].png"; row[3] is the name of country in mySQL... it works but i can't load images with spaces between characters I can't load :: Dominican Republic - Czech Republic - Burkina Faso is there any way to make this...? Quote Link to comment Share on other sites More sharing options...
PFMaBiSmAd Posted October 15, 2012 Share Posted October 15, 2012 Your <img src='...' alt=''> tag is probably missing the quotes around the src attribute, so the browser cannot determine where the URL for the image starts and ends. Quote Link to comment Share on other sites More sharing options...
Psycho Posted October 15, 2012 Share Posted October 15, 2012 What did you mean by "loading" them? Exactly how are you using the names of the files? Are you using them within an IMG tag, are you sending the image as an image object, or what? The solution could be that you need to enclose the output in quote marks. But, more likely, I'm guessing can get what you want by simply using urlencode(); But, it would help to see how you are actually using it. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.