hey folks,
i have this query
if($whereClause != "")
{
$query=$selectClause.$whereClause;
}
else
{
$query=$selectClause;
}
//secho $query;
$cursor = OCIParse ( $connection, $query);
$result=ociexecute($cursor);
$counter=0;
while(OCIFetchInto($cursor, $values))
{
$counter++;
if (($counter%2) == "0")
{
print("<tr bgcolor=#ffffff onMouseOver=this.bgColor='#f58428' onMouseOut=this.bgColor='#ffffff' onClick=location.href='../CheckResult.php?id=$values[8]&Type=View'><td><font >$values[0]</font></td><td>$values[4]</td><td>$values[1]</td><td>$values[7]</td><td>$values[2]</td><td>$values[6]</td><td>$values[3]</td></tr>");
</tbody>
and i wanna implement this on this above query. now there is a example there but that example is pulling data differently from mine. so i need a little help how can i implement the given link (jQuery ingrid) on the above query