Hi.
I need to see if a variable exists, I guess using isset($var) somehow. My problem is that the variable name to check it against is from an array. So how do I reference the name of a variable from an array? It can't be:
if (isset($array[$i]))
because that would check the existence of the contents of the array.
Help appreciated,
BS