in reply to Re: Logical question-to upate DB records
in thread Logical question-to upate DB records
...... <td> <input type="checkbox" name="Update" value="<!-- TMPL_VAR NAME=TicketN +o -->"></td> <td> <!-- TMPL_VAR NAME=TicketNo --></td> <td> <!-- TMPL_VAR NAME=Customer --></td> <td> <!-- TMPL_VAR NAME=UserName --></td> .... <td> <input type="text" value = "<!-- TMPL_VAR NAME=AssignTo -->" name= +"Detail" size="11"></td> .....
..... @update = $query->param('Update'); @detail = $query->param('Detail'); ........... print "@update\n"; #Returns the ticket numbers for records that need t +o be updated print "@detail\n";#Returns details for ALL displayed records
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: Logical question-to upate DB records
by IOrdy (Friar) on Jun 02, 2004 at 00:32 UTC | |
by thisisperl (Novice) on Jun 02, 2004 at 17:14 UTC |