I have had a problem with a user stuffing up the way the dbman uses by entering their own number. Problem is, I still need that data number to appear, as this is the record of the number of their horse (don't ask LOL)...is there are way, to make it uneditable?
Mar 19, 2003, 8:11 PM
Enthusiast (720 posts)
Mar 19, 2003, 8:11 PM
Post #2 of 2
Views: 426
take a look at sub html_record_form in html.pl. You will see:
removing the input tag and changing the code to
will prevent changes to the info
Gene
"The older I get, the more I admire competence, just simple competence in any field from adultery to zoology."
<INPUT TYPE="TEXT" NAME="ID" VALUE="$rec{'ID'}" SIZE="3" MAXLENGTH="3">
removing the input tag and changing the code to
$rec{'ID'}
will prevent changes to the info
Gene
"The older I get, the more I admire competence, just simple competence in any field from adultery to zoology."

