私はいくつかの変数を内破するために使用するこのコードを上に持っています。問題は、 に対して行ったのと同じものを作成する必要があること$hostess_name[]
です $hostess_id_selected[]
。私は何が間違っているのか分かりません。私がやったのと同じ方法で内破する必要があります$hostess_id_selected1
foreach($hostess_id as $val) {
$hostess_id_selected[] = $val;
$sqlnomehostess="SELECT nome_hostess FROM hostess where id='$val'";
$resultnomehostess=mysql_query($sqlnomehostess)or die(mysql_error());
$hostess_name= array();
while ($row=mysql_fetch_array($resultnomehostess,MYSQL_ASSOC)) {
$hostess_name[] = $row['nome_hostess'];
}
}
$hostess_id_selected1 = implode("-",$hostess_id_selected);