Hi Guys,
As you can see in my script i am calling on
value=\"{$row['band_name']}\"
to be displayed in my text input field.
What i want to know is how do you do the same for a <textarea>? Where do i put the script?
echo "<form method=post action=\"add_result_band.php\">";
echo "<font face=Verdana, Arial size=2 color=red><b>Band Name:</b></font><br>";
echo "<input type=text name=band_name maxlength=30 size=25 value=\"{$row['band_name']}\"><br><br>";
echo "<font face=Verdana, Arial size=2 color=red><b>Members:</b></font><br>";
echo "<textarea name=members cols=25 rows=5></textarea><br><br>";
Cheers,
micmac