View Single Post
ישן 24-03-08, 01:17   # 2
hi_sorie
חבר וותיק
 
מיני פרופיל
תאריך הצטרפות: Oct 2005
מיקום: רחובות
גיל: 38
הודעות: 1,339

hi_sorie לא מחובר  

ציטוט:
נכתב במקור על ידי Dum צפה בהודעה
היי,
איך בקוד הבא אני מאפשר לעלות רק סיומת של JPG לדוגמא

PHP קוד:
<?php 
if (isset($_POST['check_if_press']) && $_POST['check_if_press'] == "send_file")  
 

 
    if (!empty(
$_FILES['my_file']['name']))  
    { 
        
$dir getcwd()."/"
        
move_uploaded_file($_FILES['my_file']['tmp_name'] , $dir.$_FILES['my_file']['name']);  
        echo 
"Weldone, You have been uploaded the file."
    } 
 

?> 
 
<form action="<?php echo $PHP_SELF?>" method="post" enctype="multipart/form-data">  
    Upload file: <input type="file" name="my_file" /><br /> 
  <input type="submit" name="check_if_press" value="send_file"  /> 
</form>
תקרא explode
  Reply With Quote