Can someone make a regular expression for Notepad++ to replace this:
mysql_fetch_array($result)
by this:
$result->fetch_array()
The variable name could also have an other name, for example:
mysql_fetch_array($result_2)
should also be replaced by
$result_2->fetch_array()
Thanks!