Hi. Is there any way to get value in text area from mysql database. I have searched for it but i was unable to find. Or is there any alternative way to get these values? Please reply me. Thanks in advane.
Hello, Check the following code block, may be it solve your problem. <?php // Get the value from the database to be displayed in textarea $ret = 'hello, is it n\'t your "expected" solution?..'; ?> <textarea><?php echo $ret; ?></textarea> PHP: Regards,