Here is the code I am using.
<a href="delete_ac.php?id=<? echo $rows['id'];?>">delete</a></td>
Basically I want to send the table it came from to:
<a href="delete_ac.php?id=<? echo $rows['id']";
table=<? echo $tbl_name>">delete</a></td>
Please check these codes!
This is the first code:
<a href="delete_ac.php?id=<?php echo $rows['id']; ?>">delete</a></td>
And the second code:
<a href="delete_ac.php?id=<?php echo $rows['id']; ?>&table=<?php echo $tbl_name; ?>">delete</a></td>
Like this : with the &
operator
<a href="delete_ac.php?id=<?php echo $rows['id'];?>&table=<?php echo $tbl_name; ?>">delete</a>
?
&
Correction
<a href="delete_ac.php?id=<? echo $rows['id']"; ?>
&table=<? echo $tbl_name;?>">delete</a></td>