Wordpress ile bir video sitesi kurdum. Herşey güzel bir şekilde çalışıyor. Ancak yapmak istediğim son şeyi yapamadım. O da local'den video upload edip upload edilen videonun başlığını değiştirmek. Biraz araştırdım. Videoyu aşağıda verdiğim kodlarla upload edebildim. rename{} komutu ile isim de değiştirilebiliyormuş fakat bir türlü bunu yapamadım. Başka şekildede olsa upload ettiğim videonun ismini değiştirmede bana yardımcı olabilir misiniz?


HTML KODLARI




Please choose a file:




PHP KODLARI




$target = "upload/";
$target = $target . basename( $_FILES['uploaded']['name']) ;
$ok=1;

//This is our size condition
if ($uploaded_size > 2500000)
{
echo "Your file is too large.
";
$ok=0;
}

//This is our limit file type condition
if ($uploaded_type =="text/php")
{
echo "No PHP files
";
$ok=0;
}

//Here we check that $ok was not set to 0 by an error
if ($ok==0)
{
Echo "Sorry your file was not uploaded";
}

//If everything is ok we try to upload it
else
{
if(move_uploaded_file($_FILES['uploaded']['tmp_name'], $target))
{
echo "The file ". basename( $_FILES['uploadedfile']['name']). " has been uploaded
";
}
else
{
echo "Sorry, there was a problem uploading your file.";
}
}
?>





Son olarak bu php kodları ile video upload edildikten sonra videonun upload edildiği adresi kutucuk içine yazdırabilme imkanımız var mıdır?