Or how to make <input type='checkbox' name='pages' value='%s'><b>%s</b><input class='butto' type='submit' value='Выбрать элемент'> without the checkbox, when clicked, I was selected, and I will delete the checkbox. I do the output of all pages in the admin panel, and it is necessary that after the title of each page there is a button or an icon to edit and delete.

update

I do the output of all pages in the admin panel, and it is necessary that after the title of each page there is a button or an icon to edit and delete.
For example:

id 1) title [edit] [delete]

When you click edit on the getter parameter, you need to go to the edit.php page with the selected ID. In this code, it works if you put a checkbox checkbox, but I need it to be without it, since I want to remove the checkbox.

  • 3
    Broke the brain, sorry, really wanted to help. - meboban
  • I almost understood the 2nd sentence, but did not understand the 1st. Try to explain more clearly what you want, this will increase the chances of getting an answer. - andreyqin
  • Create such links: <a href="edit.php?id=<?php echo $id; ?> "> edit </a> where $ id is the id of the record from the database. - andreyqin
  • four
    So what's the problem then? - andreyqin
  • 3
    It was always interesting, why in the questions on html and js are php tags? What is it? Misunderstanding where php ends and html begins? On this topic. Describe the behavior you want to get. - Zelta

0