Jump to content

[SOLVED] mkdir and copy function fails :(


wmguk

Recommended Posts

Hey Guys

 

This is my code, now I have managed to get the mkdir working but the copy isnt working, basically I need to duplicate getpics.php from the clients directory, to the the clients/$login directory...

 

<?php
$thisdir = "/var/www/vhosts/domain.co.uk/httpdocs/clients";
$login = $_GET['login'];

$getpics = "/var/www/vhosts/domain.co.uk/httpdocs/clients/getpics.php";
$newdir = "/var/www/vhosts/domain.co.uk/httpdocs/clients/$login/getpics.php";

if (is_dir($thisdir ."/$login") )
  exit();

if(mkdir($thisdir ."/$login" , 0755, true))
{
}
else
{
   echo "<p class='footer'>Failed to create directory... <br> Contact <a href='mailto:[email protected]'>Drew</a></p>";
} 

echo copy("$getpics", "$newdir");

?>

 

Any thoughts, or any better ways to integrate this script i have missed :)

 

Thanks in advance :)

Link to comment
https://forums.phpfreaks.com/topic/106831-solved-mkdir-and-copy-function-fails/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.