I know many people will grin at me for this solution but may be faster way
to overcome this problem to do a find for $ and replace with $_REQUEST. even
this will help you if you dealt with $_POST, $_GET, $_COOKIE.

Please don't.

$connection = mysql_connect(...)

becomes

$_REQUEST[$connection] (or something)


Anyways avoid this solution if you can completely. Its mandatory to script
your code with reg globals off.

It is now, 7 yrs ago was php4.2 (or so) when it was only just changed to being off by default.

--
Postgresql & php tutorials
http://www.designmagick.com/


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

Reply via email to