Redirection?

2002-11-08 Thread Kurtis
Hello All, Is their a function that can redirect a brower? For example, 1) Someone goes to http://www.mysite.com/cgi-bin/index.cgi 2) index.cgi is processed and calls "redirect" function 3) Then the person is sent to http://www.mysite.com/index.html ? Thanks in advance, Kurtis

Re: Hash Sorting?

2002-11-06 Thread Kurtis
> foreach(sort {$hash{$a} cmp $hash{$b}} keys %hash){ >do something... > } > > Notice the %hash (and not $hash) at the end. > > -Original Message----- > From: Timothy Johnson [mailto:tjohnson@;sandisk.com] > Sent: Wednesday, November 06, 2002 17:07 > To: 'Kurt

Re: fetch data from having multiple

2002-11-06 Thread Kurtis
You can try JavaScript.. Replace the image from an INPUT type to an HREF and get rid of the form. Within the href of each image put this.. href="javascript: go_to('fetch.cgi?xyz=abc;image=aaa')" href="javascript: go_to('fetch.cgi?xyz=abc;im

Hash Sorting?

2002-11-06 Thread Kurtis
Hello all.. Does anyone know how to sort a hash in ascending order on the value? If possible, a little example! Thanks, Kurtis