Prueba

				
					<?php
include("todos_los_productos.php");
?>

<table>
    <tr>
        <th>Clave</th>
        <th>Descripción</th>
        <th>Precio</th>
    </tr>
    <?php
    foreach ($xml->productos->producto as $producto) {
        $clave = $producto->clave;
        $descripcion = $producto->descripcion;
        $precio = $producto->precio;
        ?>
        <tr>
            <td><?php echo $clave; ?></td>
            <td><?php echo $descripcion; ?></td>
            <td><?php echo $precio; ?></td>
        </tr>
        <?php
    }
    ?>
</table>