'; $orga_count = 0; // debug // $content .= var_dump($organiz) ; foreach ($organiz as $orga) { if ($loop % 100){ set_time_limit(20); } $loop+=1; if ($orga['name'] != null) { $orga_count+=1; $content.= '
'; $content .= '
'; $content .= '

' . $orga['name']; if ($orga['acronym'] != null) { $content.=' (' . $orga['acronym'] . ')'; } $content.=' - ' . $orga['country'] . '

'; $www = ''; if (substr($orga['homepage'], 0, 3) === 'www') { $www.=' ' . trim(str_replace('&', ' and ', 'http://' . $orga['homepage'])) . '
'; } elseif (substr($orga['homepage'], 0, 4) === 'http') { $www.=' ' . trim(str_replace('&', ' and ', $orga['homepage'])) . '
'; } if (strcmp($www, '') != 0) { $content .= '
' . $www . '
'; } $content .= '
'; if ((trim($orga['fields']) != null)) { $content .= '

'; //echo $orga['fields'].'
'; $fields=trim(str_replace('Other','',clean_exp($orga['fields']))); if (strcmp(',', substr($fields,-1,1))==0){ $fields=substr($fields,0,-1); } $fields=str_replace('%%%', ', ',$fields); $content .= 'Fields: ' . str_replace(", , ", ", ", $fields). '.

'; $content .= '

'; } $content .= '
'; if (($orga['keywords'] != null) || ($orga['address'] != null) || ($orga['phone'] != null)) { $content .= '
'; if ($orga['keywords'] != null) { $content .= ' ' . $orga['keywords'] . '

'; } if ($orga['admin'] != null) { $content .= '
Administrative contact: ' . ucwords($orga['admin']) . '
'; } if (trim($orga['street']) != null) { $address = $orga['street'] . ', ' . $orga['city'] . ', ' . $orga['postal_code'] . ', ' . $orga['state']. ', ' . $orga['country']; $address = str_replace(", , , , ", ", ", $address); $address = str_replace(", , , ", ", ", $address); $address = str_replace(", , ", ", ", $address); $content .= '
' . $address . '
'; } if (($orga['phone'] != null) || ($orga['fax'] != null)) { $content .= '
Phone: ' . $orga['phone'] . '
'; if ($orga['fax'] != null) { $content .='Fax: ' . $orga['fax'] . '
'; } } $content .= '
'; } $content .= '
'; $content .= '
'; $content .= '
'; $content .= '
'; $content .= '
'; $content .= '
'; // fin du profil } } ?>