To register for an Internet.com membership to receive newsletters and white papers, use the Register button ABOVE.
To participate in the message forums BELOW, click here
echo '<table border="2">';
echo "<td> Member Detail</td>";
while ($row = mysql_fetch_array($result)){
//loop through the rows
echo '<tr>';
//loop through elements (ie td's)
echo "<td>" . $row['member_name'] . "</td>";
}
echo '</tr>';
echo '</table>';
mysql_close($link);
?>
the output of this code is look like in HTML table:-
..................................................
| Member detail |
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
| Andy |
'''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
| Anne |
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
| Ronni |
''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
but now the problem is that i want that if user click on Andy or any other name then the name of Andy come in the variable $mem_name for the next php page
which will i use to show full detail of selected player
what can i do to do this
please help me