
yapp
User
Oct 25, 2001, 10:40 AM
Post #2 of 4
(751 views)
|
U can use the CGI module for the uploading task. The module can handle all the difficult parts of it. At the end, your CGI script (written in perl off course) should store the image somewhere at the webserver. Most likely you need an other CGI script that dynamically generates a HTML page, where in the image location is stored (like print qq[<IMG src="$TheImage">]; in perl code. If we're just talking about one image at the same location, you can use this HTML tag to get the image: <IMG src="/path/to/script.cgi">
|