CodeIgniter Forums
session problem in pagination - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: Archived Discussions (https://forum.codeigniter.com/forumdisplay.php?fid=20)
+--- Forum: Archived Development & Programming (https://forum.codeigniter.com/forumdisplay.php?fid=23)
+--- Thread: session problem in pagination (/showthread.php?tid=18141)

Pages: 1 2


session problem in pagination - El Forum - 04-27-2009

[eluser]rajyakshmik[/eluser]
My problem solved working file.thanks a lot


session problem in pagination - El Forum - 04-27-2009

[eluser]TheFuzzy0ne[/eluser]
How did you fix it?


session problem in pagination - El Forum - 04-27-2009

[eluser]rajyakshmik[/eluser]
Actually problem with some where i m using $_SESSION.I removed all places $_SESSION and I used $this->session->userdata('zip'), then it's working fine..


session problem in pagination - El Forum - 04-27-2009

[eluser]TheFuzzy0ne[/eluser]
Great stuff. Thanks for letting us know. Smile


session problem in pagination - El Forum - 04-27-2009

[eluser]rajyakshmik[/eluser]
Can u help me how to include ajax in view...
I written code like this in view
Code:
<input type="image" src="images/getcouponbtn.jpg" border="0">

Code:
function generate()
{

    
        var url = "http://colonizer1/dealfrontier/main/generatecode/";
        
        var myAjax = new Ajax.Request(url,
        {onSuccess: function(transport)
        {
            document.getElementById('coupon').style.display = 'block';
            $('coupon')[removed] = transport.responseText;
        }
        });
    

}
this will work?