好的,这是一个问题。
我在代码点火器中有两个项目,比如 a 和 b。我在“a”中有一个表格。当用户填写表单并提交时,表单中的所有数据都会被放入一个数组中,然后进行 json 编码。这是它的代码
function create(){
$data = array(); //get all the data from the form into an array
$data[] = array('name' => $this->input->post('name'),
'abbrev' => $this->input->post('abbrev'),
'long_name' => $this->input->post('long_name'),
'long_abbrev' => $this->input->post('long_abbrev'),
'url' => $this->input->post('url'),
'description' => $this->input->post('description') );
$json_data=json_encode($data);
$this->output->set_output($json_data)
}
现在我想将此数据发送到项目“b”,它将存储在数据库中。这是它的代码。$college_details = 数组();
$college_details['colleges']= json_decode(file_get_contents('http://localhost:8888/a/colleges'));
但我不知道项目“b”如何知道有数据要采集