hi i have a code like this:
<form action="11.php" method="post">
<table border="1">
<tr>
<th bgcolor="#666600">Action</th>
<th bgcolor="#666600">Name</th>
<th bgcolor="#666600">Key Skills</th>
<th bgcolor="#666600">Qualification</th>
<th bgcolor="#666600">email</th>
</tr>
<?php
include("connection.php");
$q="select * from tbl_faculty";
$result=mysql_query("select * from tbl_faculty");
while($row=mysql_fetch_array($result))
{
echo "<tr><td><input type='submit' id='$row[faculty_id]' name='info' value='Info'><input type='submit' id='$row[faculty_id]' name='edit' value='Edit'><input type='submit' id='$row[faculty_id]' name='Delete' value='Delete'></td><td>$row[FirstName] $row[LastName]</td><td>$row[Keyskills]</td><td>$row[qualification]</td><td>$row[Email]</td></tr>";
}
?>
<tr>
<td colspan="5"><input type="submit" id="btn_insert" name="btn_insert" value="Insert" /></td>
</tr>
</table>
</form>
from this page i want to get values of each button like we use in mysql wamp server.