bueno lo primero que tienes que hacer es crear un editar.php, un eliminar.php, un actualizar.php
cada uno independiente del otro.
ahi donde esta el "$sql11" solo deber decir SELECT * FROM 'tu tabla'
después lo que debes hacer es enrrutarlos.
yo hice uno y te lo dejo para que lo entiendas mejor
Código PHP:
Ver original<!DOCTYPE html>
<html>
<html lang="es">
<head>
<meta charset="UTF-8">
<title>Reportes</title>
</head>
<body>
<link rel="stylesheet" type="text/css" href="mostrar.css">
<div id="intro">
<h5>Bievenido Al Modulo De Articulos </h5>
</div>
<fieldset>
<table border='1'>
<thead>
<tr>
<th>Id.</th>
<th>Título.</th>
<th>Descripción.</th>
<th>Imágen.</th>
<th>Acción.</th>
</tr>
<?php
/*aqui mostrare todos los datos de mi bd articulos*/
include('conexion.php');
$query = 'SELECT * FROM articulos';
$resultado =$conexion->query($query);
while($row=$resultado->fetch_assoc()){
$ruta = "../img/" . $row['imagen'];
?>
<tbody>
<tr>
<td><?php echo $row['id'];?></td>
<td><?php echo $row['titulo'];?></td>
<td><?php echo $row['texto'];?></td>
<td> <img src="<?php echo $ruta; ?>" width="100" heigth="100"></td>
<td><a href="eliminar.php?id=<?php echo $row['id'];?>"onclick="return confirm('Deseas eliminar este registro del sistema?');">Eliminar</a></td>
<td><a href="ingres_art.php?id=<?php echo $row['id'];?>">crear</a></td>
<td><a href="editar.php?id=<?php echo $row['id'];?>">Editar</a></td>
</td>
</tr>
<?php } ?>
</tbody>
</table>
</thead>
</fieldset>
</body>
</html>
espero que te sirva saludos