I want to populate the above tag with values from database.
I have written php code up to t
echo ''; while($row=mysql_fetch_array($result)) { echo ''.$row['whatever_index'].''; } echo '';
Replace 'whatever_index' with the column name you are fetching.