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

More Query from same tag