jepri got it. However, WebDAV may be more appropriate for users who are in your company/organization and are more technical. You may want/need a different system for a more disperse / less technically able group of users.

Look into CGI.pm for all your CGI needs. It's really, really worth learning and a huge timesaver! "Roll your own" form parsing is doomed to failure.

If you're going to be supporting a lot of users, and/or a lot of concurrent users, you should probably look into a database solution. Flat text will leave you flat (ouch.)

DBI programming is pretty simple, if you're already familiar with SQL and database concepts.

You'll also need to think about a couple things:

  1. User authentication / session management. There's a relatively good thread here.
  2. HTML output. Though this may seem maybe a little ahead of where you're at, I highly suggest you learn HTML::Template, a good quick primer is here, thanks to Ovid. This will allow you to separate your code from your HTML, greatly simplifing maintenance and customizability down the road.

In reply to Re: Hi! I need help on user admin + HTML output situation..... by Hero Zzyzzx
in thread Hi! I need help on user admin + HTML output situation..... by sprakash

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.