我将一个数组从我的Android应用程序传递到http发布到php服务器,如下所示:
params.add(new BasicNameValuePair("image[]", encodedImage));
现在我想要在我的PHP代码中的图像数组上的所有值。如何实现?
如何为此编写代码? - 我想循环遍历此数组并在php中插入image []中的每个图像。
当我想要做的时候
if(isset( $_POST['image'] )){
$images = array($_POST['image']);
while($row = $images){
//insert into table
}
}
但这没有帮助
此ifset的if条件失败。