Código PHP:
<?php
//tomamos los datos del archivo conexion.php
include("conexion.php");
$link = Conectarse();
//se envia la consulta
$result = mysql_query("SELECT * FROM COCHES", $link);
//se despliega el resultado
echo "<div class='container'>";
echo "<table class='table table-bordered'>";
echo "<tr>";
echo "<th>Nombre</th>";
echo "<th>Comentario</th>";
echo "<th>Fecha</th>";
echo "<th>Accion</th>";
echo "</tr>";
while ($row = mysql_fetch_row($result)){
echo "<tr>";
echo "<td>$row[1]</td>";
echo "<td>$row[2]</td>";
echo "<td>$row[3]</td>";
echo "<td><button type='button' class='btn'>Borrar Registro</button></td>";
}
echo "</tr>";
echo "</table>";
echo "</div>";
?>