Hello,
We try to build web-based database via PHP and mysql and Apache. After we obtain retrieved data, we plan to directly click some of those items to go to some PHP sites to do further searching. One of thing I want to directly input those text-data or hidden fields into next PHP site's textarea. But I couldnt make it work yet.
Do you have any advice and suggestions?
Appreciate your help
HR
sure, you do it like this..
<input type=hidden name=foo value=\"$bar\"> <textarea cols=40 rows=8 name=foo>$bar</textarea>
Where $bar contains the data you want in the form fields.
Hope this helps,
Arta.