Hello, I am working on a cgi program that lists multiple flat, text db from which you can add/remove/view information. I'm trying to figure out how to add a "count" of how many line entries are in each category file. (ie. Cat: Biology Books - 11 entries) Example of the categories list looks like this:
art.gif=ArtsDance=The Arts - Dance $index=0; foreach $cat (@catagories) { @line_pair = split(/=/,$cat); $catagorypicture = $line_pair[0]; $catagorylink = $line_pair[1]; $catagorydescription= $line_pair[2]; print "<a href=\"$cgidir/classifieds.cgi?catagory=$catagorylin +k\" ><img src=\"$htmldir/$catagorypicture\" border=0 align=center> <B +>$catagorydescription</B></a><br>"; $index++; if ($index==3) { $index=0;
And the individual categories that I would like a "count" for look like this:
open(DATAFILEIN,"$catagory.dat") || print "This section is + currently empty...Please check back often!"; print "<table border=1 width=\"95%\">"; while (<DATAFILEIN>) { chomp $_; @line_pair = split(/=/,$_); $time = $line_pair[0]; $name = $line_pair[1]; $email= $line_pair[2]; $phone= $line_pair[3]; $subject= $line_pair[4]; $data= $line_pair[5]; $time2 = $line_pair[6]; $data = &stripBadHtml($data); $password= $line_pair[8]; $pictureurl= $line_pair[7]; $priceline= $line_pair[9];
Any help would be greatly appreciated...Lis

In reply to Adding an entry count for each DB by lisaw

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.