I am trying to define a form using form_connector.php
I have a simple mysql table (people) with fields: id, firstname, lastname. My php file looks like this:
<?php
require_once("config.php");
require_once("../codebase/connector/form_connector.php");
$newUser = new FormConnector($inventory);
$newUser-> enable_log('user.log");
$newUser->render_table("people", "id", "firstname, lastname");
?>
If I look in the log, I get error:
I have been trying to figure this out for the last hour and I could not. Please give me hand
csaba