I’m trying to display a table in which several columns have buttons that call other scripts. I’m not sure how to transfer values through $_POST using this, though. For example, for the code [php]echo "
echo “<input type=“submit” value=“DELETE”>
that would be displayed on each row of the table how do I transfer only the data of a particular row on the table to the called script insertPosts.php? Does the $row[0] variable in the code above affect this, or do I need to add another field such as “name” to the form action?
Additionally, is there a way to place a column of links in the table so that each one will transfer data through $_POST or $_GET, such as with
[php] echo “<a href=“update” title=“Change values””;[/php]
so that when a link in a particular row is clicked, the values in that row and only that row will be passed by $_Post to update.php? Thanks in advance for any help that can be provided.