Fonction File Uploads Php

Résolu/Fermé
aureliendu917 Messages postés 272 Date d'inscription mardi 27 novembre 2007 Statut Membre Dernière intervention 14 janvier 2011 - 25 juin 2009 à 22:18
aureliendu917 Messages postés 272 Date d'inscription mardi 27 novembre 2007 Statut Membre Dernière intervention 14 janvier 2011 - 26 juin 2009 à 00:47
Bonjour,
voila j'ai un probleme je voudrai que quand un personne uploads une images je voudrai que que le fichiers se renommer si elle existe deja est ce que vous pouvez m'aidez svp voici mon code

<?php
$target_path = "uploads/";

$target_path = $target_path . basename( $_FILES['uploadedfile']['name']); 

if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
    echo "The file ".  basename( $_FILES['uploadedfile']['name']). 
    " has been uploaded";
} else{
    echo "There was an error uploading the file, please try again!";
}
?>


Merci a vous
A voir également:

26 réponses

aureliendu917 Messages postés 272 Date d'inscription mardi 27 novembre 2007 Statut Membre Dernière intervention 14 janvier 2011 6
26 juin 2009 à 00:34
sa me le copie a la racine du site
0
Dalida Messages postés 6728 Date d'inscription mardi 14 mai 2002 Statut Contributeur Dernière intervention 11 janvier 2016 921
26 juin 2009 à 00:40
évidement, mon code enlève le dossier…
cerveau au ralenti cette nuit et tu ne m'aides pas des masses !
-:oD
define('UPLOAD_DIR', 'uploads/');
$target_path = UPLOAD_DIR.basename( $_FILES['uploadedfile']['name']);
while(file_exists($target_path))
{
	$name = pathinfo($target_path, PATHINFO_FILENAME);
	$ext = pathinfo($target_path, PATHINFO_EXTENSION);
	$target_path = UPLOAD_DIR.$name.rand(0, 9).'.'.$ext;
}
0
aureliendu917 Messages postés 272 Date d'inscription mardi 27 novembre 2007 Statut Membre Dernière intervention 14 janvier 2011 6
26 juin 2009 à 00:41
MERCI sait bon sa marche !!!!!!!
0
Dalida Messages postés 6728 Date d'inscription mardi 14 mai 2002 Statut Contributeur Dernière intervention 11 janvier 2016 921
26 juin 2009 à 00:42
désolé pour les pertes de temps et bon courage pour la suite !
0
aureliendu917 Messages postés 272 Date d'inscription mardi 27 novembre 2007 Statut Membre Dernière intervention 14 janvier 2011 6
26 juin 2009 à 00:43
j'ai encore un probleme comment je peut faire pour affichez l'adresse ou l'images a été envoyez ??
0

Vous n’avez pas trouvé la réponse que vous recherchez ?

Posez votre question
Dalida Messages postés 6728 Date d'inscription mardi 14 mai 2002 Statut Contributeur Dernière intervention 11 janvier 2016 921
26 juin 2009 à 00:46
if(move_uploaded_file($_FILES['uploadedfile']['tmp_name'], $target_path)) {
    echo '<p><a href="'.$target_path.'">'. $target_path.'</a></p>';
} else{
    echo "There was an error uploading the file, please try again!";
}
0
aureliendu917 Messages postés 272 Date d'inscription mardi 27 novembre 2007 Statut Membre Dernière intervention 14 janvier 2011 6
26 juin 2009 à 00:47
UN TRES GRAND MERCI A TOI !!!!
0