i have a table that display a record from the database. Using this php file i would like to display the table inside the php file. I know is something wrong with this line in my code but i don't know how to fix it. I am trying to use a checkbox here to delete a row in my database.
here is that line of code:
echo "<td> <input name=\"need_delete[<? echo $rows['id']; ?>]\" type=\"checkbox\" id=\"checkbox[<? echo $rows['id']; ?>]\" value=\"<? echo $rows['id']; ?>\"> </td>";
Thanks in advance !!