Parse error

Hi,
I am working on CodeIgniter Framework. When I visit this file it shows

Parse error: parse error, expecting T_STRING' or T_VARIABLE’ or '{'' or ‘$’’ in F:\xampp\htdocs\ci\system\application\controllers\helloworld.php on line 5

This is the file …
<?php
class Helloworld extends Controller{
function index() {
$this->load->model(‘helloworld_model’);
$data[‘result’] = $this->helloworld_model-><span class=“sql”>getData</span>(); // line-5
$data[‘page_title’] = “CI Hello World App!”;
$this->load->view(‘helloworld_view’,$data);
}
}
?>

can anyone help me to fix this problem?

Other docs suggest you should be calling another method there, try this?


$data['result'] = $this->helloworld_model->getData();