array[$index][$index]
发布到某个变量。
如何在$val[$index][$index];
上发布数组中的值?
我必须尝试使用这样的代码,但是没有成功地工作:
$val[$x][$y] = $this->input->post('criteria'[$i][$j]);
关于我应该如何努力让它发挥作用的任何想法?
谢谢!
答案 0 :(得分:1)
在html表单中,您可以添加名称具有双方括号的字段。像:
$this->input->post('myVal');
然后将其发布到php的表单中。 在你的php文件中写:
mRecorder.setAudioSource(MediaRecorder.AudioSource.MIC);
..
..
..
mRecorder.setOutputFile(mFileNamePath);
您会在那里看到已发布的字段。您可以使用以下命令在codeigniter中获取此发布的数据:
// Scene 1 main timeline
var message:String = "Hello World";
// Scene 2 main timeline
trace(message); // "Hello World"