Passing Parameters

/********* From onRowSelected Event ************/

accTGrid.clearAndLoad(“xml/allocatetools.php?id=”+RowID);

/********* From allocatetools.php *****************/

$grid->render_sql(“SELECT * FROM TBL_TOOL_ALLOCATION WHERE ID=$_GET[‘id’]”,“ID”,“T_ID,MAKE,OWNER,MODEL,SERIAL,SENSOR_NO,CAL_CERT_DATE,ARQIVA_CERT,ALLOCATED,NOTES,ACTIONS,CERT,C_ID”);

Is there a way to implement the above.

It looks as a valid code, client side request subset of data, server side use render_sql to filter data - do you have some problems with such approach ?