Answer:
D. fputs($someFile, $name);
Explanation:
The instruction is not right as it is in the answer, because the content inside $name will be placed into the file referenced by $someFile. The correct structure is like this:
fputs($name, $someFile);
where: