How can i implement this on this query?

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 :frowning: how can i implement the given link (jQuery ingrid) on the above query

no help? a little help please :frowning:

i don’t want it to get indexed. u did pasted the code. where did u implemented the thing

Contents of code.txt, I see no reason for it to be posted externally. :confused:


  /* Removed at the request of OP */

would be obliged if u do. but still no1 has helped me figure out how can i implement ingrid into this. as i m all blank

Would you like it removed?

What query? This : $query=$selectClause.$whereClause; ?

What do $selectClause and $whereClause contain?

here. i have pasted the code in txt file. i really need help with it. as the code isn’t mine but i been assigned to do it