Cette partie du tuto est ancienne, et n'a pas été déboguée depuis longtemps.
Il reste en effet à faire des améliorations et corrections...
Les parties "Gestion d'Erreur" et "suppression de fichier" ont besoin d'être revues.
Exemple d'amélioration :
remplacer :
par :
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3 if ($PHOTO_avant != '' && $PHOTO_avant != $PHOTO && $PHOTO_avant != $PICTO) { unlink($repPhotos.$PHOTO1avant); // Suppression de la photo }
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3 if ($PHOTO_avant != '' && $PHOTO_avant != $PHOTO && $PHOTO_avant != $PICTO && file_exists($repPhotos.$PHOTO1avant)) { unlink($repPhotos.$PHOTO1avant); // Suppression de la photo }
Partager