PHP - Nasıl yüklemek için &

0 Cevap php

i (bir klasöre görüntüleri) dosya yüklemek için bu kodu kullanıyorum

<form action='' method='POST' enctype='multipart/form-data'>
<input type='file' name='userFile'><br>
<input type='submit' name='upload_btn' value='upload'>
</form>

<?php
$target_Path = "images/";
$target_Path = $target_Path.basename( $_FILES['userFile']['name'] );
move_uploaded_file( $_FILES['userFile']['tmp_name'], $target_Path );
?>

Dosya (görüntü) belirtilen yolda kaydedildiğinde ... NE ben bazı istenen bir adla dosyayı kaydetmek istiyorsanız ....

Bunu yerine denedim

$target_Path = $target_Path.basename( $_FILES['userFile']['name'] );

BU İLE

$target_Path = $target_Path.basename( "myFile.png" );

AMA çalışmıyor

0 Cevap