Welcome Guest, Not a member yet? Register   Sign In
session problem
#20

[eluser]CI_avatar[/eluser]
@paulon

It is a hard problem to discuss it here. but i'll try to explain it.
if your are in your main.php (main.php is a controller) and you are trying to call processor.php (processor.php is a controller) here is the sample code in jquery.

Code:
$(document).ready(function(){

$(function(){
    $(".submit-btn").click(function(){
      $.post('index.php?c=processor', { //or $.post('index.php/processor'
        //list of post variable follows
        samplevar      : 'addrequisition',
        samplevar2     : $("[name=username]").val()
        //...more variable
      },function(data){
        alert(data); //display the echo from processor.php
                     //If you echo "hello world" in processor.php
                     //and after calling ajax then hello world alerted
                     //it means that you requested the processor.php successfully
                     //note: data variable holds the values echoed from processor.php
      });
});

});

note: main.php includes the jquery and other javascript.


Messages In This Thread
session problem - by El Forum - 12-17-2009, 11:20 PM
session problem - by El Forum - 12-18-2009, 12:03 AM
session problem - by El Forum - 12-18-2009, 12:07 AM
session problem - by El Forum - 12-18-2009, 12:12 AM
session problem - by El Forum - 12-18-2009, 01:00 AM
session problem - by El Forum - 12-18-2009, 01:22 AM
session problem - by El Forum - 12-18-2009, 01:28 AM
session problem - by El Forum - 12-18-2009, 01:29 AM
session problem - by El Forum - 12-18-2009, 02:16 AM
session problem - by El Forum - 12-18-2009, 05:14 AM
session problem - by El Forum - 12-19-2009, 05:20 AM
session problem - by El Forum - 12-19-2009, 05:50 AM
session problem - by El Forum - 12-19-2009, 06:19 AM
session problem - by El Forum - 12-20-2009, 06:55 PM
session problem - by El Forum - 12-20-2009, 09:32 PM
session problem - by El Forum - 12-20-2009, 09:38 PM
session problem - by El Forum - 12-20-2009, 10:31 PM
session problem - by El Forum - 12-20-2009, 10:46 PM
session problem - by El Forum - 12-20-2009, 11:15 PM
session problem - by El Forum - 12-20-2009, 11:31 PM
session problem - by El Forum - 12-20-2009, 11:39 PM
session problem - by El Forum - 12-21-2009, 12:10 AM
session problem - by El Forum - 12-21-2009, 12:43 AM
session problem - by El Forum - 12-21-2009, 01:02 AM
session problem - by El Forum - 12-21-2009, 01:05 AM
session problem - by El Forum - 12-21-2009, 01:10 AM
session problem - by El Forum - 12-21-2009, 01:20 AM



Theme © iAndrew 2016 - Forum software by © MyBB