Module versions

2000-08-27 Thread Brendon Oliver
Hi all, I recall seeing comments about certain combinations of various versions of Embperl, Apache::Session and mod-perl not woking properly. Until now I paid them no attention as I've never had to bother with Apache:Session... until now that is ;-). I have a project to do where I'll most likel

Re: RE: checkboxes in embperl

2000-08-27 Thread Sherwin Daganato
BUT i'm just relying on one variable in all pages. Upon submission, $fdat(xxx) will just be a tab delimited string of selection1, selection2, selection3, and others. Thanks. Sherwin [EMAIL PROTECTED] writes: >1. You can use session variables to keep track of what they checked on >previo

RE: checkboxes in embperl

2000-08-27 Thread Joe Lauer
1. You can use session variables to keep track of what they checked on previous pages. Or you can plop it into a db to keep track of it. 2. If you store it in the db then you can just have it update the fields they went back to and updated. The same for session storage. Then you can have a wi

checkboxes in embperl

2000-08-27 Thread Sherwin Daganato
I was displaying rows of selection using checkboxes. The problem is when there are too many selections (e.g. >100) to display, my embperl page slows down. I am planning to cut the selections into 25 rows per page. Users of this page will just have to click next/previous button. My questions are