On Dec 12, 2005, at 8:21 PM, Ray wrote:
Hello,
Thanks Matt, I appreciate your help. your solution is a lot easier
than mine.
It's also nice to understand what was happening. I was introduced to
PHP
after that type of globals were considered 'evil' so I hadn't seen code
written that way.
Ray
-----Original Message-----
Register globals is no longer ON I believe. That is why it happened.
To fix this:
Foreach($_POST as $key => $value) ${$key} = $value;
That will convert all of your post variables to local variables.
Could not you also do:
<?php
if (count($_REQUEST) > 0) {
while(list ($key, $val) = each ($_REQUEST)) {
$$key = $val;
}
}
?>
--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php