
May 30th, 2000, 08:06 AM
|
|
Junior Member
|
|
Join Date: May 2000
Posts: 10
Time spent in forums: < 1 sec
Reputation Power: 0
|
|
|
I have a script which produces an alphabetic list of people in an LDAP database (106 people)
If I output the data to an "Input type=text" field, I get all the entries in their own form.
I would like to output this data into a textarea instead, but when I do I donot get any data.
My latest coding attempt is :-
<form method="POST" action=<?php echo PHP_SELF>">
<Textarea rows="20" cols="10" name="sn" value = "<?php echo $prijmeni?>"></textarea>
$prijmeni is a string created earlier in the script which has the person's surname, and is processed correctly if I use:-
<input type=text name="sn" size="10" value = "<?php echo $prijmeni?>">.
Any suggestions please?
Tony
|