i'm sorry my title is confusing
here's my problem
i've created this
echo "<table border='1'>
<tr>
<th>Idno</th>
<th>Name</th>
<th>Specialty</th>
<th>Email</th>
<th></th>
</tr>";
while($row = mysql_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['Idno'] . "</td>";
echo "<td>" . $row['LastName'] . " " . $row['FirstName'] . " " . $row['MiddleName'] . "</td>";
echo "<td>" . $row['Specialty'] . "</td>";
echo "<td>" . $row['Email'] . "</td>";
echo "<td>" . 'Please <a href="/view.php">try again</a>.' . "</td>";
echo "</tr>";
}
my problem is how could i view the profile of that specific person from a specific row into a form or a new table...
here's a pic of the table
http://i55.tinypic.com/1z5qano.jpg
btw,i'm still a noobie about php so please bear with me T__T i really need a help