Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7538775
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T07:12:25+00:00 2026-05-30T07:12:25+00:00

this is the method I want to send data to it function get_lesson($reshte,$poodeman){ $this->load->model(‘dropdown_model’);

  • 0

this is the method I want to send data to it

function get_lesson($reshte,$poodeman){
        $this->load->model('dropdown_model');
        header('Content-Type: application/x-json; charset=utf-8');
        echo(json_encode($this->dropdown_model->get_lessons($reshte,$poodeman)));
    }

and this is the get_lessens() function in the model file.

  function get_lessons($reshte = null, $poodeman=NULL){
          $this->db->select('rlessid, title');

          if($reshte != NULL AND $poodeman!= NULL ){
              $this->db->where('reshteid', $reshte);
              $this->db->where('poodemanid', $poodeman);
          }

          $query = $this->db->get('tbllessons_root');

          $lessons = array();

          if($query->result()){
              foreach ($query->result() as $lesson) {
                  $lessons[$lesson->rlessid] = $lesson->title;
              }

          return $lessons;
          }else{
              return FALSE;
          }
    }

and this is my ajax call at the view file

var reshteid = $('#reshte').val();
 var poodemanid = $('#poodemanha').val();

$.ajax({
     type:"POST",
     url:"http://localhost/crud-grocery/index.php/examples/get_lesson/",//+reshte+"/"+poodeman,
     data: "reshte="+reshteid+"&poodeman="+poodemanid,
     success: function(lessons)
     {
        $.each(lessons,function(rlessid,title){
          var opt = $('<option />');
        opt.val(rlessid);
        opt.text(title);
        $('#lessons').append(opt);
        });
    }

});

as you see I am trying to chain options in the form
but The problem comes up when I try to post (send) two parameters to the controller method
any idea?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T07:12:27+00:00Added an answer on May 30, 2026 at 7:12 am

    In your controller, you need to get POST values not as parameters:

    
    //in controller
    function get_lessons(){
    ...
    //get POST values
    $reshte = $this->input->post('reshte');
    $poodeman = $this->input->post('poodeman');
    
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

How to send triimed data using $.get() see code snippet below: $(#txtSearch).keyup(function() { $.get(/controller/method/,
I have this button with which I want to send data back to the
Let's say I want a method which will be called like this: tiger =
I'm generating buttons dynamically that I want it to call a method like this:
I want to refactor this mumbo jumbo of a method to make it more
In this particular code sample I want to reference the second overloaded method (int
Ok I want some opinions how I can fix this mess of a method!
I have a method on an interface that looks like this and I want
I want to send array to my action method: var items = { 'myIdList[]':
I want to use jQuery's .get method to send an ajax call to the

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.