i know how to dispaly data from database to simple plain page
are ther any code ...code piece where can i see
the data in the database in the text area in the another page....
question is
how to dispaly result from database to text area
(this makes the page size(length) small..especially if the message posted is too long)
thanks
rami
how to dispaly result from database to text area?
Moderator: General Moderators
but there wasnt 1 good answerfeyd wrote:you've already asked this question today it appears..
it is not that no one knows how to do it
so i thought people didnt understood it ..and clarified it..
by the way mr fyed if you had just typed a link where it is found ...from ur memo lane may be it would have taken less time that even typing that long line....
i am not voilating the big rules ...laws of the forum...
its said" is good to be opitimistic"
never mind...
rami
is it real or you are just guessing any way i will give it a trycavallo wrote:something like this < textarea > $value < /textarea > withouth spaces of course
by the way when do we do like this
Code: Select all
<td>. {row['name'] .}- jayshields
- DevNet Resident
- Posts: 1912
- Joined: Mon Aug 22, 2005 12:11 pm
- Location: Leeds/Manchester, England
cavallo has the right idea. textareas are coded different to text inputs so you need to open textarea tags, echo the variable inside it and then close the textarea tags after it.
something like...
will work fine.
something like...
Code: Select all
echo '<textarea name="blah">', $result, '</textarea>';