Je fais cette requete :
$sqlequ = 'select tb_cat_photo.id_cat_photo, tb_cat_photo.cat, tb_photos.id, tb_photos.photo_p, tb_photos.photo_g, tb_photos.commentaire, tb_photos.nom_fichier, tb_photos.visible, tb_photos.id_cat_photo
from tb_cat_photo, tb_photos
where tb_photos.id_cat_photo = tb_cat_photo.id_cat_photo
and tb_.id_equipe = '.$id_test;
if ($resselectequ = mysql_query($sqlequ)) {
$selectequ = mysql_fetch_array($resselectequ);
}
Y'a t-il un moyen pour faire la meme chose mais sans selectionner un id en l'occurence dans mon exemple id_test ???je veux afficher tous les enregistrements de ma table et non pas que id_test !
Merci pour votre aide.....