Hi,
I want to be able to pass to a diag script all the variables and arrays that have been created within the calling script.
Here's the crunch: I don't know what these variables are called as all my scripts can call the diag script and I don't want to have to remember to add a variable name to the calling code each time I put a new variable in a script.
I am working along the lines of making all the variables part of an associative array, so at least I know where they all are, as it were.
$VarHold = array();
$VarHold['Today'] = getdate();
....
Once I've done this in php, I've got to tackle it in vbs ! hey ho
Thnx
Michael