These are the companies, confirmed to participate in the industrial exhibition at the EXRS 2018:
[insert_php] $logos = array(
0 => ‘






















‘;
for( $i=0; $i<$logosSize; $i++) {
$randIndx = rand(0,sizeof($logos)-1);
$htmlCode = $htmlCode . $logos[$randIndx];
array_splice($logos,$randIndx,1);
if (($i+1) % 2 == 0) {
$htmlCode = $htmlCode . '
‘;
if ($i != $logosSize – 1) {
$htmlCode = $htmlCode . ‘
‘;
}
}
}
if ($logosSize % 2 != 0) {
$htmlCode = $htmlCode . ‘
‘;
}
echo $htmlCode;
[/insert_php]