Hi there,
im doing a php page which is retrieve data from XLS sheet with 150 records, its working well and no problem in retiring data from xls sheet . there is a search button to search a specific word in xls sheet. when i type a word and click search , its giving the result from the first page only with in first 20 records coz its limit to 20 records per page.
so its searching from first page only. how to search all pages.
find the attachment to view the source code,
please some one help me. thnxx
if((($page-1)*$rows)<=$i && $i<=($page*$rows))
{
//$data1=$data->val($startno+$i,1);
$data2=$data->val($startno+$i,2);
$data3=$data->val($startno+$i,3);
$data4=$data->val($startno+$i,6);
$searchparameter=$_GET['searchparameter'];
if((stristr($data2,$searchparameter) || stristr($data3,$searchparameter)|| stristr($data4,$searchparameter))|| $searchparameter=="")
{
if($count%2==0)
echo "table";