Code Igniter POST Variable
问题 I am brand new to Code Igniter but I can't seem to find a way to do this in the documentation, In normal PHP you can retrieve the contents of the entire POST variable like this $_POST = $postedVars But I can't seem to find something that does this in the same manner, I've tried $arr = $this->input->post; and $arr = $this->input->post(); With no luck! Is this possible in CI? Thanks in advance! 回答1: First, you need a form or something that sets the variables Then, you retrieve them. $this-