add missing free

This commit is contained in:
Chris Cromer 2018-12-22 19:50:23 -03:00
parent 30cc3a79d1
commit 69ee999c88
Signed by: cromer
GPG Key ID: 39CC813FF3C8708A
1 changed files with 1 additions and 0 deletions

View File

@ -22,6 +22,7 @@ while ($row = pg_fetch_row($result)) {
} }
echo '</tr>'; echo '</tr>';
} }
pg_free_result($result);
echo '</table>'; echo '</table>';
pg_close($conn); pg_close($conn);
?> ?>