I am getting the following Errors from my connector page.
[code]
Strict Standards: Declaration of GridConnector::fill_collections() should be compatible with Connector::fill_collections() in /home/ccccp041/public_html/websites/ToolRegister/codebase/connector/grid_connector.php on line 126
Fatal error: Class ‘EventMaster’ not found in /home/ccccp041/public_html/websites/ToolRegister/codebase/connector/base_connector.php on line 339[/code]
Here is the code for the connector that I am using.
<?php
require("../codebase/connector/grid_connector.php");//adds the connector engine
$res=mysql_connect("localhost","Username","Password");//connects to server with db
mysql_select_db("MYDBName");//connects to db with name "dhtmlx_tutorial"
$conn = new GridConnector($res); //initializes the connector object
$conn->render_sql("Select * from inf-tools","ID","ID,Employee,Tool,Qty,ToolCode,Notes,Date,Signature"); //loads data
//the method takes: the table's name, the id field, a list of fields to load
Any Help on this would be much Appreciated.