i try to open folder and copy files inside this folder
this code open the folder fine but not copy the file see it plz and tell me whats wrong
$dir=$INSTALL_PATH.trim($url);
mkdir($dir, 0777);
$exec="cp -R ".$INSTALL_PATH."copy/* ".$INSTALL_PATH.trim($url)."/";
exec($exec);
$exec="chmod -R a+Xrw ".$INSTALL_PATH.trim($url)."/";
exec($exec);