Hi guy can help me with this. I 'm new on using the apache web server. I upload all the thing inculde the image file when i view on my pc i can show the image very nice but when i open in other pc i cant display my image. Why like this?

Below is my image code:

<th width="185" scope="col"><img src="file:///C|/logo.gif" width="200" height="114" /></th>

Which operating system is that other pc as you put it using?
Once you upload your files to the server (html, image files in one directory) then you don't need that long path.(assuming you are using windows)
It would be:

<th width="185" scope="col"><img src="logo.gif" width="200" height="114" /></th>

if you want to write the whole path then it must be clear:
/*Example*/
<img src="C:\other-directory-names\logo.gif" />

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.