in reply to OT: Firefox image display

I am still having problems with this issue. When using the following code it again works in iexplore, but not firefox.

<img src="C:/Taieri Print Ltd/Mailbird/images/tp-logo.gif" border="0">


It displays the no image icon

Replies are listed 'Best First'.
Re^2: OT: Firefox image display
by merlyn (Sage) on Jun 19, 2005 at 11:24 UTC
    Well, for one, you have an illegal URL. Filepaths are not URLs. URLs can't have spaces in them. For a local file, the URL is something like "file:///path/to/the/file". IE is probably correcting the error for you (bad IE!), but FIreFox is following the specification (good firefox!).

    -- Randal L. Schwartz, Perl hacker
    Be sure to read my standard disclaimer if this is a reply.