A diferencia de lo que te dijo Bullan, creo que hiciste un buen avance y al menos nos mostraste lo que hiciste. En cuanto a las mejoras que te sugirio las vas a  ir incorporando con la experiencia: yo haria estas correcciones y vos despues depuralos:
    
Código PHP:
Ver original- <html> 
-     <body> 
-         <center>Modificar usuario</center> 
-          
-   
- <?php 
- include"conexion.php"; 
- $id=$_POST['id']; 
- $result=mysql_query("select * from clientesl2",$conexion); 
- ?> 
-   
- <form name="clientesl2<?php echo $row[0]?>" id="clientesl2<?php echo $row[0]?>" action="action-actualizar.php" method="POST"> 
- <input type="hidden" name="id" value="<?php echo $row[0]?>" /> 
-   
-         email :<input type="text" name="email" value="<?php echo $row[5]?>" /><p> 
-          
-         telefono:<input type="text" name="telefono" value="<?php echo $row[4]?>" /><p> 
-          
-         opcion:                 <input type="checkbox" name="opc" value="ok"/>OK</input>   
-                                 <input type="checkbox" name="opc" value="nada" checked/>Nada</input>  <p> 
-                                  
-                                 <input type="text" name="opc" value="<?php echo $row[3]?>" /><p> 
-          
-         seleccion:              <input name="col" type="radio" value="si"/> si                 
-                                 <input name="col" type="radio" value="no" checked/> no         
-                                 <input name="col" type="radio" value="nose"/>   nose          <p> 
-                                 <textarea name="seleccion" rows="3" cols="40"><?php echo $row[2]?></textarea><p> 
-         </tr> 
-         mensaje:<textarea name="mensaje" rows="3" cols="40"><?php echo $row[1]?></textarea><p> 
- <input name="enviar<?php echo $row[0]?>" type="submit" value="Modificar"><p> 
- </form> 
-     <a href="borrar.php?id=<?php echo $row[0]?>"><button>borrar</button></a><hr> 
-   
- <?php 
- } 
- ?> 
-   
- </body> 
- </html> 
Te agrege en el nombre del formulario <?php echo $row[0]?> para que no se repitan los formulario y un ID
con eso deberia funcionar "Modificar" 
luego en el "Borrar":
<html>
    <body>     
Código PHP:
Ver original- <?php 
- include"conexion.php"; 
- $id=$_GET['id'];  //RECIBIS EL ID DEL REGISTRO A BORRAR POR GET 
-   
- mysql_query("DELETE FROM `lineage2`.`clientesl2` WHERE `clientesl2`.`id` = '$id' ");  
-   
- ?> 
-         <b><hl><center><a href="index.html"><button>indice</button></a></center></hl></b><br> 
-     </body> 
- </html> 
Pero para mi hiciste un buen intento, toma muy en cuenta lo que te dijo Bullan