Ben 3. parametre $_GET['value3']
bir dizi olması gerekiyordu bir komut dosyası, 3 parametre geçmek için çalışıyorum
$_GET['value1']
$_GET['value2']
$_GET['value3'] //an array of items
Bu gibi komut arıyorum: (value3
, ben doğru olduğundan emin değilim benim sözdizimi haber)
http://localhost/test.php?value1=test1&value2=test2&value3=[the, array, values]
Sonra dizisi value3
, üçüncü parametre üzerinden umarım döngü bir foreach kullanın
//process the first input $_GET['value1']
//process the second input $_GET['value2']
//process the third input $_GET['value3'] which is the array
foreach($_GET['value3'] as $arrayitem){
echo $arrayitem;
}
ama hata almak Invalid argument supplied for foreach()
Benim metodoloji doğru olup olmadığından emin değilim. Bazı Eğer türden bir şey yapıyor hakkında gitmek istiyorum nasıl açıklamak Can