how to place the value for text area

Posted by udaya on Stack Overflow See other posts from Stack Overflow or by udaya
Published on 2010-04-26T12:47:32Z Indexed on 2010/04/26 12:53 UTC
Read the original article Hit count: 119

Filed under:
|

Hi while I am performing the edit function .. i have a textarea where i type some text and submit

<tr align="left"> 
            <td  class="table_label">Reason </td>
            <td><textarea cols="17" class="text_box_login_14_width_150"  size="5" name="txtReason" id="txtReason"></textarea></td>
        </tr>

when i submit i must receive the value in the edit form

<td>
                <textarea id="txtReason"  name="txtReason" value="<?= $row['dReason']?>"></textarea>
            </td>

but i dont receive the value for text area how to receive the value

© Stack Overflow or respective owner

Related posts about php

Related posts about codeigniter