Stamp_Guy has asked for the wisdom of the Perl Monks concerning the following question:
For some reason this won't display forms, so here's the html
<FORM> <TABLE WIDTH="400"> <TR> <TD><INPUT TYPE="text" SIZE=3 value="3"></TD> <TD>Stuff</TD> <TD>More Stuff</TD> </TR> <TR> <TD><INPUT TYPE="text" SIZE=3 value="1"></TD> <TD>Stuff</TD> <TD>More Stuff</TD> </TR> <TR> <TD><INPUT TYPE="text" SIZE=3 value="2"></TD> <TD>Stuff</TD> <TD>More Stuff</TD> </TR> </TABLE> </FORM>
The user numbers the lines and I need the script to take those numbers, apply them to the proper part of the database, then sort the database based on those values. I've got the sort routine down if the numbers are already there, but I need to know how to set them with something like the above table so the user can change them. Does anyone have some ideas for doing this? Am I being clear enough? If not, please let me know and I'll try to clarify. Thanks!
Stamp_Guy
A bus station is where a bus stops... A train station is where a train stops... On my desk is a workstation...
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Flat File Sorting Issues
by mpolo (Chaplain) on May 07, 2001 at 10:19 UTC | |
|
Re: Flat File Sorting Issues
by Chady (Priest) on May 07, 2001 at 10:18 UTC | |
|
Re: Flat File Sorting Issues
by Beatnik (Parson) on May 07, 2001 at 11:14 UTC | |
|
Re: Flat File Sorting Issues
by Stamp_Guy (Monk) on May 07, 2001 at 16:43 UTC |