score:2

Accepted answer

Change

extract $row;

to

extract ($row);

extract() is a PHP function and not a language construct like include or require.

So, you can't call it without parenthesis.


Related Query