voilà la table:
Code : Tout sélectionner
CREATE TABLE `personnes` (
`id` int(11) NOT NULL auto_increment,
`nom` varchar(200) NOT NULL,
`prenom` varchar(200) NOT NULL,
`pays` varchar(200) NOT NULL,
)Code : Tout sélectionner
select * from personnes where nom like '".$_GET['lettre_debut']."%' order by nomCode : Tout sélectionner
select * from personnes where nom like 'A%' order by nom_auditComment pourrais-je faire svp?
merci.