I have a table that is working perfectly fine, however, it currently sends the user to a phpmyedit screen no matter which edit link is clicked. What I want to accomplish is clicking the inline link to directly edit that particular row or 'id'. Here is an example of my code:
$result = mysqli_query($con,"SELECT * FROM `TABLE_NAME` ORDER BY ID DESC");
echo "<table>";
echo "<table border='1' style='margin:200px 200px 500px 50px;'>
<tr>
<th>ID</th>
<th>TABLE HEADER</th>
<th>TABLE HEADER</th>
<th>TABLE HEADER</th>
<th>TABLE HEADER</th>
<th>TABLE HEADER</th>
<th>TABLE HEADER</th>
<th>TABLE HEADER</th>
<th>TABLE HEADER</th>
<th>Edit</th>
</tr>";
while($row = mysqli_fetch_array($result))
{
echo "<tr>";
echo "<td>" . $row['ID'] . "</td>";
echo "<td>" . $row['rowName'] . "</td>";
echo "<td>" . $row['rowName'] . "</td>";
echo "<td>" . $row['rowName'] . "</td>";
echo "<td>" . $row['rowName'] . "</td>";
echo "<td>" . $row['rowName'] . "</td>";
echo "<td>" . $row['rowName'] . "</td>";
echo "<td>" . $row['rowName'] . "</td>";
echo "<td>" . $row['rowName'] . "</td>";
echo "<td><a href='http://phpmyedit.com/editexample".$row['']."'>Edit</a></td><tr>";
echo "</tr>";
}
echo "</table>";
?>
So basically I just need to allow the edit link to directly edit that id in the row it was clicked in.
**EDIT: I'm using PHPMyEdit to edit/update the data in the database table, and would like to continue using PHPMyEdit.
Thanks in advance.