Problems showing images [duplicate]

0

I have this code that prints images from the server, but I can only see it on the server and on the internet explorer only:

 <img src='file://192.168.10.129/sapshared/FOTOS/KennedyDB/$row[PicturName]' height = '100' width = '100' >

the ip that ends in 129 is another server where the images are hosted.

The program is in php runs on IIS and SQL Server.

    
asked by Leonardo Rodríguez 09.05.2018 в 04:09
source

1 answer

1

The use of file is usually to point to files within the same server, in your case you should change it to HTTP and leave the source of your link as follows:

<img src='http://192.168.10.129/sapshared/FOTOS/KennedyDB/$row[PicturName]' height='100' width='100' />
    
answered by 09.05.2018 в 22:35