
sleuth
Enthusiast
/ Moderator
Nov 30, 2000, 9:44 AM
Post #2 of 2
(284 views)
|
Re: sharing info between scripts
[In reply to]
|
Can't Post
|
|
Yes this is the easiest part actually, you just have to find out what is unique about that data in that particular record, maybe an ID number?? You cna always use the line number too. Or try putting 2 or 3 fields together, This is a what I mean. You have a group of radio buttons named "record". For the value of each radio button that is next to the record, make the value of that radio button, either a few fields combined in that record, or make it the line number of that record, or just use the id number of that record, what ever you have to work with, the key is just to finding the unique element to that record. Then you can say in your script if ($form{'record'} eq "$record_id"){ ##print out the record for modifing } While your looping through the records. Do you see what I mean??? Sleuth
|