Good evening,
I have this piece of PHP code :
<?php
function testCopyFile($currentFile, $destinationFile)
{
copy($currentFile, $destinationFile);
}
?>
Is there a means in my javascript code to call the function and to pass the two parameters?
Many thanks for your help.