thanks everybody. i get it now and fixed it. I did know I was doing it all wrong of course, that's why i posted. For some reason I couldn't see where the scalars and arrays were in this. everything was working till i had to add the sort - i wasn't able to back out and see where changes had to be made. i appreciate the help. hopefully people learn from my dumb posts.
#SEARCH THROUGH THE CONTENT DIRECTORY AND FIND THE FILES THAT MATCH
chdir("$contentdir");#change to the content directory
my $stuff = ".";#make it $_
opendir THISDIR, "$stuff";#open the content directory
my @submenu = readdir THISDIR;#put the names of the files in an array
closedir THISDIR;
for (1..2) {shift @submenu;}
my @aaa;
for (@submenu) {
push(@aaa,[split /\_/,$_,3]);
}
my @final = sort {$a->[2] <=> $b->[2] } @aaa;
for (@final) {
my $cat=$_->[0];
my $title=$_->[1];
my $rankk=$_->[2];
(my $rank, $tossit) = split (/\./, $rankk,2);
#foreach submenu item print it
if ($cat=~$main)
{
$counter++;
if ($counter > 1) {
print "<a href \= \"/cgi-bin/idx.pl?$sub1$sep$sub2$sep$sub3\">";
print "$sub2";
print "</a>";
etc., etc. i know this isn't pretty, but it is what it is.
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: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.