Il faut utiliser les alias de tables
Et éventuellement joindre en LEFT JOIN si le chef et/ou le second sont inexistants
Code PHP :
<?php
SELECT a.*,
DATE_FORMAT(a.Date_creation,"%d-%m-%Y %H:%i:%s") AS Date_creationfr,
chef.prenom AS PrenomChef,
chef.nom AS NomChef,
second.prenom AS PrenomSecond,
second.nom AS NomSecond
FROM alliance a, joueur chef, joueur second
WHERE a.id_chef = chef.id and a.id_second = second.id and a.Id=...