thank-you, that's very helpful :-)
so in perl I have:
sub do_file {
local($FILE) = @_;
local(@FILE);
. . .
@FILE = cdopenfile($FILE);
. . .
}
which would mean in php that I have:
function do_file($file){}
and then within the function I can create an array to hold cdopenfile($file).
Is that right?
Sorry, just graduated, new to perl, new to php and the first job I get is making me learn both at once. Which is good, but a bit stressful. I really appreciate the help :-)