Click to See Complete Forum and Search --> : Image Uploader


timgoat
01-30-2003, 07:16 PM
Hi all. Hopefully I can find some answers here!

I am looking for a script that will let my friends upload pics to my site and then be able to see them on a page. I would also like to have fields for name, email, and description.

Any ideas? Please either email me or reply.

Thanks!

Sergey Smirnov
01-30-2003, 07:56 PM
Actually, this job is not for javascript. You have to use some sort of server site program (such as asp, php, jsp or so on) to store and manage uploaded files. The client site can looks like:

<form name="form_name"
action="server_side_upload_handler"
enctype="multipart/form-data"
method="post">

<input type="file" name="fileName"><br>
<input type="submit" value="Upload">
</form>

timgoat
01-30-2003, 08:04 PM
Thanks. Now, where can I find a server site prog? And can I install it even tho I use a hosting service?

Sergey Smirnov
01-30-2003, 08:14 PM
First of all, ask your hosting service provider what kind of server scripting technology they are provide for customers, if any. The next step is very depend of the answer.

timgoat
01-30-2003, 08:17 PM
Only ASP/ASP.net

Sergey Smirnov
01-30-2003, 08:42 PM
You need to store your uploaded file on the server. Does provider allow you to do so ? If answer is yes, it is time to switch the forum :) Try to find solution on asp101 or something like that. For example, http://www.asp101.com/articles/jacob/scriptupload.asp

Actually, ASP is not the area of my expertise. So, do not count on me from this point. :rolleyes: