Click here to Skip to main content
15,921,169 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
please help me friends
please tell the code to move any video file to move an another folder
by an html form using with php code
Posted
Comments
Yuri Vital 7-Oct-11 6:21am    
Have you tried something ?
Have you looked at the php documentation ?
i.e. : http://fr.php.net/manual/en/function.copy.php

Hi RekhaShukla417
Use this code:


PHP
if(is_file($oldFilePath.$fileName))
    move_uploaded_file($oldFilePath.$fileName,$newFilePath.$fileName);
 
Share this answer
 
v2
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900