Hey everyone, I'm currently modding a forum that requires information to be submitted in order to create a new character. However what I want is that after someone has created a character they cannot change some of the values. Now for example where you enter in your character name I use if conditionals to determine if they are creating a character or editing one:
Code:
<if condition="$member[name]==''>
<input type='text' name='name' value='{$member[name]}' size="25" maxlength="30" class='bginput'>
<else />
<input type='text' name='name' value='{$member[name]}' size="25" maxlength="30" class='bginput'>
</if>
What I want to do is ask if there is some way I can adjust the code in bold to make it so that input field is read only (like in any program when something is disabled) so people cannot alter the contents inside.
Thanks.