I have a website developed with CI 2.0 (beta), where i had alphabetical indexes. Clicking on alphabet , gave the results. Our code worked well till i updated my system folder to CI 2.0 stable, now query doesnot show any results.

controller:

    function punjabi_index($alpha='')
{
    $this->load->model('dao/amritkeertan_dao');

    if($alpha == '')
    {
        $alpha = html_entity_decode('ਕ',0,'utf-8');
    }

    $form['current_alphabet'] = $alpha;
    $form['alphabets']  = array('ਕ','ਖ','ਗ','ਘ','ਙ','ਚ','ਛ','ਜ','ਝ','ਞ',
                                'ਟ','ਠ','ਡ','ਢ','ਣ','ਤ','ਥ','ਦ','ਧ','ਨ',
                                'ਪ','ਫ','ਬ','ਭ','ਮ','ਯ','ਰ','ਲ','ਵ','ਸ',
                                'ਹ','ਖ਼');

    $form['current_index'] = "punjabi";
    $form['shabad_field'] = "shabad_punjabi";
    $form['shabads']    = $this->amritkeertan_dao->get_shabads_by_alphabet($alpha,'shabad_punjabi');

dao:

 * Get the List of Shabads in a chapter
 */
function get_shabads_by_alphabet($alpha,$language)
{
    $SQL = "SELECT * FROM ak_shabadindex WHERE $language LIKE '" . $alpha . "%' ORDER BY $language ASC";
    $rs = $this->db->query($SQL);
    log_message('info',$SQL);
    if($rs->num_rows() > 0)
    {
        return $rs;
    }
    else
    {
        return false;
    }
}

/**

view:

<?php

  foreach($alphabets as $alphabet)
  {
    echo '
    <a href="'.site_url('amrit_keertan/'.$current_index.'_index/'.$alphabet).'" class="">'.$alphabet.'</a>&nbsp;&nbsp;
    ';
  }

  ?>

$i = 1; $id = 0; if($shabads != false) { foreach($shabads->result() as $shabad) { $id++; $url_shabad_name = url_title($shabad->shabad_name, 'underscore', TRUE); echo ' '.$id.' shabad_id.'/'.$url_shabad_name).'">'.$shabad->$shabad_field.' pageno).'">'.$shabad->pageno.' ';

    $i=-$i;
}

} else { echo ' No shabads available '; }

?>

The code works in this url with CI 2.0 beta [Works here][1] but not here with ci 2.0 stable, is this code php4 and not php 5 [CI 2.0 stable..doesnt work her][2]

any help is appreciated

link|improve this question
Have you renamed your models from "extends Model" to "extends CI_Model"? – Johnny Tops Feb 14 '11 at 17:34
Yes, i have renamed models from "extends Model" to "extends CI_Model" – Manny Gujral Feb 24 '11 at 22:25
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.