I am using following PHP class to display records. I also want to open another webpage when a row is selected according to a column value. This class is doing everything fine when this line is like:
$x->setQuery("*", "people");
If instead of *, I define columns like:
$x->setQuery("fname,lname,age", "people");
it stops identifying the clicked row id. Can someone help me out?
http://www.eyesis.ca/projects/datagrid.html
Please check the Example: 4 demo and source supplied there.