| <?php |
| |
| $banners = array(); |
| |
| $banners[] = array( |
| 'img' => 'banner_eclipsecon_1.png', |
| 'url' => 'https://www.eclipsecon.org/na2014/javaday', |
| 'alt' => 'Java 8 Day', |
| ); |
| |
| $banners[] = array( |
| 'img' => 'banner_eclipsecon_2.png', |
| 'url' => 'https://www.eclipsecon.org/na2014/m2mday', |
| 'alt' => 'IoT/M2M Day' |
| ); |
| |
| $banners[] = array( |
| 'img' => 'banner_eclipsecon_3.png', |
| 'url' => 'https://www.eclipsecon.org/na2014/vertxday', |
| 'alt' => 'Vert.x Day' |
| ); |
| |
| $banners[] = array( |
| 'img' => 'banner_eclipsecon_4.png', |
| 'url' => 'https://www.eclipsecon.org/na2014/polarsysday', |
| 'alt' => 'PolarSys Day' |
| ); |
| |
| $banners[] = array( |
| 'img' => 'banner_eclipsecon_5.png', |
| 'url' => 'https://www.eclipsecon.org/na2014/registration', |
| 'alt' => 'Register now' |
| ); |
| |
| $current = $banners[rand(0,4)]; |
| |
| ?> |
| |
| |
| |
| <div style="height:79px;padding:11px 0 0 15px;width:554px;"> |
| <a href="<?php print $current['url'];?>"> |
| <img src="/home/images/econ2014/<?php print $current['img'];?>"" alt="EclipseCon NA 2014 > <?php print $current['alt'];?>"/> |
| </a> |
| </div> |