Hi. The process is this: Query MySQL database for customer images. Make a directory on MySQL database server. Copy images from remote (images) server to directory on MySQL database server. When I follow the code process, the directory on the MySQL database server is never written:
$foo = sprintf("mkdir \"/home/customer/images/_Retrieve/%s\"",$name);
system($foo);
echo $foo."<br>";
This should make a folder with the customer’s name, for example, “Mike James” located in /home/customer…
It isn’t doing this. It is just printing (echo) what it looks like it is doing to the next webpage. Any ideas where I should start looking for where the code is breaking?
Thanks for your help thinking about this.