alrighty. sounds like you just want to do some basic stuff. i'll try and give you a quick lesson on publishing pictures.
Getting the Pics "ONLINE"
*check to see if you're isp has an online interface for uploading photos to your webspace. if so, use that. if not, you'll need an ftp program. ws_ftp is a commonly used one that's easy to use. i'll not go into how to use that cause there are good tutorials out there on each different ftp program.
Posting Pictures
now i'm not sure what you want to do here. you can either use your space for remote linking (to post on forums) or you can use it to post http pages that display your images.
*so we'll tackle the 1st scenereo (sp?) you need to find out what your webspace is called. it's usually your account username. as an example, we'll use mine. my isp is cox.net and my username is vt_steve_05. in this webspace, i have a handfull of images. one is named "funny_hockey.jpg" so the complete url to this pic is "http://www.members.cox.net/vt_steve_05/funny_hockey.jpg". (NOTE: you will need to find the first part of your webspace url - ie the members.cox.net equivalent). now to post this image on the forum, you need to surround that complete url with image tags --
. if you do it correctly, you should see the image...
* now if you want to have a web page display these images, you'll need to create an html page. you can either use MS Frontpage or another web authoring tool...or you could hand write you own. that's how i did my personal web page. i will give you a VERY BASIC example. you'll need to open up a text editor like notepad and type this:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>My Photo Page</title>
</head>
<body>
<img src="http://www.members.cox.net/vt_steve_05/funny_hockey.jpg"/>
</body>
</html>
of curse, you'll sub in your pics url. html is a very easy language to learn. if you play around with it, you'll become very proficient at it.
ok, now save this file as "photopage.html". then you'll need to ftp it to your webspace. and there ya go!
so, there ya have it in a nutshell. i hope this is what you were looking for. if you still have questions, feel free to throw them at us. we're here to help.