Edited grid row goes bold, but does not update database

I have a grid and a dataprocessor that connects to a SQL database through PHP. Grid populates fine. Once a value is edited, the entire row goes bold. But the database is not updated.

Here are the files:

Schedule.html:

Blueline Projects

data.php:

<?php error_reporting(E_ALL); ini_set('display_errors', '1'); require("../codebase/connector/grid_connector.php"); require("../codebase/connector/db_sqlsrv.php"); $myServer = "ntserver4"; $myUser = "sa"; $myPass = "saPassword"; $myDB = "Scheduler"; //connection to the database $connectionInfo = array( "Database"=>$myDB, "UID"=>$myUser, "PWD"=>$myPass); $conn = sqlsrv_connect( $myServer, $connectionInfo); $gridConn = new GridConnector($conn,"SQLSrv");// connector initialization $gridConn->enable_log("temp.log",true); $gridConn->render_table("Projects","ProjectID","ProjectNumber, ProjectName"); ?>

Any help on getting this simple grid to edit the values in my database would be appreciated.

Please try to change the order of includes

[code]

[/code]

Yes. That worked. Thank you.