Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using WAMP server and I want to display the image uploaded on the server.. i have successfully implemented the uploading of image..but while displaying it using -

echo ' < img src=\"'.$p.'\" alt=\"Cover\" > ';

where $p contains the path of image, i get a broken image. When i right click and select open image in new tab, the following is displayed..

Forbidden

You don't have permission to access /"c:/wamp/www/folders/shubhi/My on this server.

Also this error is not showing complete path which should be "c:/wamp/www/folders/shubhi/My pics/1.jpg" But when i print $p, it displays the correct location.

What should i do to resolve this? Or is there any other method to display the uploaded image having its location stored in a php variable?

share|improve this question

1 Answer

up vote 0 down vote accepted

You are using absolute path to display image which is wrong.

To display image on webpage, you need to give http url to that image as below

$p = 'http://example.com/shubhi/My pics/1.jpg';

echo ' < img src=\"'.$p.'\" alt=\"Cover\" > ';
share|improve this answer
But what if I have that image in a folder on my system? – shubhi1910 Oct 6 '12 at 18:56
how you access your php page in wampp ? – GBD Oct 6 '12 at 18:57
By writing localhost/home.php in the address bar of the browser. – shubhi1910 Oct 6 '12 at 19:08
same way you can also browse images – GBD Oct 6 '12 at 19:11
if i write .. $p="localhost/1.jpg"; echo ' < img src=\"'.$p.'\" alt=\"Cover\" > '; then also i get the same error. – shubhi1910 Oct 6 '12 at 19:17
show 2 more comments

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.