Editable and delete row in grid
// grid object name
$name = "obj";
// SQL query
$query = "select * from `xxx`.`bu_group1`";
// database connection
$connection = mysql_connect("abcd", "root", "xyz");
mysql_select_db("xxx");
// query results
$data = mysql_query($query, $connection);
echo activewidgets_grid($name, $data);
from the above script how to edit and delete a row
$name = "obj";
// SQL query
$query = "select * from `xxx`.`bu_group1`";
// database connection
$connection = mysql_connect("abcd", "root", "xyz");
mysql_select_db("xxx");
// query results
$data = mysql_query($query, $connection);
echo activewidgets_grid($name, $data);
from the above script how to edit and delete a row
array
March 4,