Welcome Guest, Not a member yet? Register   Sign In
Parse error: syntax error, unexpected T_AS in C:\wamp\www\Adreach\application\models\offerModel.php on line 13
#1

[eluser]bsrbvr[/eluser]
Hi, I am getting above parse error on line 13 when executing this query. Is any other way to perform mathematical operations in codeigniter?

Code:
public function get_nearestOffers($slug1,$slug2)
{  
  $this->db->select('*');
  $query = $this->db->get_where('adp_city_list', array('city_name' => $slug1 ));
  $resultdata = $query->row_array();

  $this->db->select('area_latitude,area_longitude');
  $query1 = $this->db->get_where('adp_area_list', array('city_id' => $resultdata['city_id'] , 'area_name' => $slug2 ));
  $data = $query1->row_array();


  $this->db->select('loc.location_id',( 3959 * acos( cos( radians($data['area_latitude']) ) *cos( radians( loc.location_lat ) ) * cos( radians( loc.location_long ) - radians($data['area_longitude']) ) +sin( radians($data['area_latitude']) ) * sin( radians( loc.location_lat ) ))) AS distance);
  $this->db->from('adp_location as loc');
  $this->db->having('distance < 8');
  $this->db->order_by("distance");  
  $resultdata = $this->db->get();  
  print_r($resultdata->result());
  return $resultdata->result();
}

Thanks
#2

[eluser]PhilTem[/eluser]
You've forgotten to but AS distance within a string. Use

Code:
$this->db->select('loc.location_id, ' . ( 3959 * acos( cos( radians($data['area_latitude']) ) *cos( radians( loc.location_lat ) ) * cos( radians( loc.location_long ) - radians($data['area_longitude']) ) +sin( radians($data['area_latitude']) ) * sin( radians( loc.location_lat ) )) ) . " AS `distance`");

Might be that I screwed up with some brackets, but basically $this->db->select() only accepts one parameter which must be the fields you want to select (or any other thing that usually is used with MySQL's SELECT-statement). The second parameter for db->select(), howerver, is to prevent the string to be escaped.

http://ellislab.com/codeigniter/user-gui...ecord.html Part $this->db->select();
#3

[eluser]bsrbvr[/eluser]
Thanks for reply. I changed like You said. Now I am getting the following.
Fatal error: Call to undefined function radians()




Theme © iAndrew 2016 - Forum software by © MyBB