php move file to another folder code example
Example 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/>
Example 2: php move file
rename('first_location/image1.jpg', 'new_location/image1.jpg');
Example 3: PHP Move File from One Folder to Another
<?php $filePath = 'images/test.jpeg'; $destinationFilePath = 'copyImages/test.jpeg'; if( !rename($filePath, $destinationFilePath) ) { echo "File can't be moved!"; } else { echo "File has been moved!"; } ?>