spdwrench Posted August 22, 2007 Share Posted August 22, 2007 I need the textarea so it can not be edited by the user..... how can I hide it and keep it so it can not be changed <textarea name="body" id="body" cols="50" rows="15">'.$_CONFIG['MAIL_BODY'].'</textarea> this text area has an email message for my inviter script but I dont want the user to be able to alter the body... how can this be achieved? I manages to hide the subject by ussing type hidden but I dont know how to do it with this text area... thanks Paul Quote Link to comment https://forums.phpfreaks.com/topic/66215-how-can-i-keep-this-text-area-from-being-edited-in-this-form/ Share on other sites More sharing options...
piznac Posted August 22, 2007 Share Posted August 22, 2007 <textarea name="body" id="body" cols="50" rows="15" readonly>'.$_CONFIG['MAIL_BODY'].'</textarea> That might work Yeah I just tested it works,.. but if you wanted to be xhtml compliant you would need to make it readonly="readonly" I think. Quote Link to comment https://forums.phpfreaks.com/topic/66215-how-can-i-keep-this-text-area-from-being-edited-in-this-form/#findComment-331190 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.