Hi everyone...I have a flash form that has 3 text fields...name1,name2,name3...I have a php script that queries the database and sends the names back to name1, name2 and name3...If there are 5 names in name1...all the names do not appear in the text field but the last name does appear. The text field used here are dynamic textfields. How do i show all the 5 names in the textfield. Please help...The php code is shown below...
<?php
$server="localhost";
$user="bhavin";
$pass="bhavin";
$hookup=mysql_connect($server,$user,$pass);
mysql_select_db("account",$hookup);
$query="select name from account_table";
$result=mysql_query($query,$hookup);
while($row = mysql_fetch_result($result));
{
$test=$row->name;
$dname="dname=$test";
echo $dname;
$test2=$row->amount;
$damount="&damount=$test2";
echo $damount;
$test3=$row->description;
$ddescription="&ddescription=$test3";
echo $ddescription;
}
?>