如何根据用户的性别在 mysql 查询中放置 if 语句?
我想根据性别更改 $avatar 图像。
如果是男性,我会存储这张图片 --> avatar/male.png
如果是女性,我会存储这张图片 --> avatar/female.png
这是mysql查询
mysql_query("INSERT INTO `etudiants`
(id_etudiant, id_filiere, dateInscription, anneeScolaire, classe, typeFormation, filiere, nomPrenom, CIN, niveauScolaire, dateNaissance, sexe, nationalite, adresse, ville, tel, npPere, telPere, formPere, npMere, telMere, formMere, avatar)
VALUES
('','$id_filiere','$date','$anneeScolaire', '$classe', '$typeFormation', '$filiere', '$nomPrenom','$CIN', '$niveauScolaire', '$dateNaissance', '$sexe','$nationalite', '$adresse','$ville','$tel','$npPere','$telPere','$formPere','$npMere','$telMere','$formMere','$avatar');
") or die (mysql_error());
}