Jump to content

how can I keep this text area from being edited in this form


spdwrench

Recommended Posts

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

<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.

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.