> Never mind, ${$key} was what I was looking for - my test case set the
> wrong variable and that's why it didn't seem to be working.

You may want to code with E_NOTICE errors showing.  To 
show all levels, use error_reporting:

  error_reporting(E_ALL);

This will show you undefined variables, and then some.
Note that error_reporting is both a function (runtime) 
and a php directive.

Most PHP users feel that developing with E_ALL is good.

Regards,
Philip Olson

> 
> CYA, Dave
> 
> 
> -- 
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
> 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to