in reply to Mysql & perl
I'd use the database as a repository of meta-information about the picture; in other words, I wouldn't actually store the picture data in the database, even though it *would* be possible. I'd store the actual picture file in the filesystem (somewhere in some protected directory, probably), then store the path to that file in the database. Which is exactly what you seem to be saying yourself.
For the file upload, I'd use either CGI or Apache::Request, the latter if you're using mod_perl. And I'd use DBI to communicate with the database.
Does this help? Were you looking for suggestions other than what you wrote, or more for confirmation that your idea made sense?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
(jcwren) RE: Re: Mysql & perl
by jcwren (Prior) on Jul 14, 2000 at 22:38 UTC | |
by btrott (Parson) on Jul 14, 2000 at 22:46 UTC | |
|
RE: Re: Mysql & perl
by Ovid (Cardinal) on Jul 14, 2000 at 23:45 UTC | |
by Aighearach (Initiate) on Jul 15, 2000 at 07:15 UTC | |
|
RE: Re: Mysql & perl
by toadi (Chaplain) on Jul 15, 2000 at 12:41 UTC |