joekenn84 Posted May 16, 2012 Share Posted May 16, 2012 I'm having an issue with an image not showing up using firefox. All other major browsers work. Query: $imgpath=(mysql_result($result,0,"imgpath")); Below is the code to display the image: <img alt="" height="210" width="709" src="<?php echo $imgpath; ?>"/> Any suggestions will be appreciated. Quote Link to comment https://forums.phpfreaks.com/topic/262623-image-from-db-not-showing-up-in-firefox/ Share on other sites More sharing options...
mrMarcus Posted May 16, 2012 Share Posted May 16, 2012 Firefox explicitly? Can you post your (relevant) view-source? Quote Link to comment https://forums.phpfreaks.com/topic/262623-image-from-db-not-showing-up-in-firefox/#findComment-1345990 Share on other sites More sharing options...
joekenn84 Posted May 16, 2012 Author Share Posted May 16, 2012 Query string: (imgpath = full path to image. ex: http:\\www.mydomain\images\img1.jpg) <?php $query="SELECT * FROM table WHERE table_id = $id"; $result=mysql_query($query); $imgpath=(mysql_result($result,0,"imgpath")); } ?> ____________________________________________________ <div id ="classname"><img alt="" height="210" width="709" src="<?php echo $imgpath; ?>"/> Quote Link to comment https://forums.phpfreaks.com/topic/262623-image-from-db-not-showing-up-in-firefox/#findComment-1346005 Share on other sites More sharing options...
mrMarcus Posted May 16, 2012 Share Posted May 16, 2012 I meant view-source from the browser. PHP is not biased to any browser. If the image is not showing up in Firefox, it's because what you're outputting must not be jiving. Quote Link to comment https://forums.phpfreaks.com/topic/262623-image-from-db-not-showing-up-in-firefox/#findComment-1346006 Share on other sites More sharing options...
joekenn84 Posted May 16, 2012 Author Share Posted May 16, 2012 Your inquiry led me to the solution. My image paths in the database were using back slashes instead of forward slashes. Appreciate your help. Quote Link to comment https://forums.phpfreaks.com/topic/262623-image-from-db-not-showing-up-in-firefox/#findComment-1346010 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.