Salam i want to paginate result in cakephp 2.X with parameter $page here my code public function index($lat,$lng) {
$hotels = $this->Hotel->find('all',
array('fields'=>array('id','hotelName','rating','address','cityName','countryName','imageId','minRate','currencyCode','Latitude','Longitude')));
for ($i = 0; $i < count($hotels); ++$i) {
$latitude=$hotels[$i]['Hotel']['Latitude'];
$longitude=$hotels[$i]['Hotel']['Longitude'];
$latlng_clt=new LatLng(doubleval($lat),doubleval($lng));
$hotels = Set::insert($hotels, $i.'.Hotel.distance',
$this::_calcDistance($latitude,$longitude,$latlng_clt));
}
$hotels = Set::sort($hotels, '{n}.Hotel.distance', 'asc');
$this->set(compact('hotels'));
$this -> viewPath = "Hotels";
$this -> render("json/index","json/default");
}