Hi I want to implement multiple checkbox select and the values should come from the database. The rows are getting the values from the database but those values are not appearing into the combobox. I am sending you my code.
This is my sample.html page
And this is my connector.php page.
<?php
require_once("…/dhtmlxConnector_php/codebase/grid_connector.php");
$res=mysql_connect(“localhost”,“root”,"");
mysql_select_db(“sampledb”);
$grid = new GridConnector($res);
$grid->dynamic_loading(100);
$grid->render_table(“products”,“nm”,“code,num_val,shotid,shotstatus,taskid,taskref,tasknote,userid,taskstatus,start_date,end_date,alloted_mandays,task_priority,next_sub,actual_manday”);
?>
Please reply me as soon as possible.