I'm feeling moderately helpful today.
Baskii -- you've got a backslash in the file path after the word "images", what you want is a forward slash. The backslash will work interchangably on your local computer, but not on the web. It gets changed into "%5C", which then points to a file that doesn't exist on your web server, and the pictures don't show up.
(Note the space in the filename gets changed to "%20", but that one's techincally ok. Still, remember what your grandma told you, and avoid using spaces in filenames. Use underscores instead. Perhaps my grandma was ahead of her time.)
For example, if you have:
Code:
http://www.nessus.demon.co.uk/RPG/images\PHB Back.jpg
It ends up becoming:
Code:
http://www.nessus.demon.co.uk/RPG/images%5CPHB%20Back.jpg
after the server mangles it for web use. What you want is:
Code:
http://www.nessus.demon.co.uk/RPG/images/PHB Back.jpg
Users in the know can manually make the change after clicking on the links, but most won't.