So, I've got this file name that I got some PHP to produce - $id
And now what I would like to do is for it to generate a file with $id as it's filename as well as open it. I've been trying to get this to work...
$fp = fopen("filename.xml", "a");
But if I do this:
$fp = fopen("$id.xml", "a"); or...