Answers for "php move file to another folder"

PHP
3

php move file

//Use the rename() function.
rename('first_location/image1.jpg', 'new_location/image1.jpg');
Posted by: Guest on July-15-2020
1

how to go to another folder in php

just add the source of another file
  for example:
you are in "localhost/library/admin/admin_login" and you have to go to student login
  <a href="localhost/library/student/student_login.php">For Student Login Click Here<a/>
Posted by: Guest on August-20-2020
0

take files from one folder and move to another folder in php

$source_file = 'foo/image.jpg';
$destination_path = 'bar/';
rename($source_file, $destination_path . pathinfo($source_file, PATHINFO_BASENAME));
Posted by: Guest on October-22-2021

Code answers related to "php move file to another folder"

Browse Popular Code Answers by Language