|
From: Brian M. <ma...@us...> - 2005-10-20 17:01:51
|
Update of /cvsroot/java-game-lib/LWJGL/www In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv24869 Modified Files: projects.php Log Message: added drommi racing Index: projects.php =================================================================== RCS file: /cvsroot/java-game-lib/LWJGL/www/projects.php,v retrieving revision 1.11 retrieving revision 1.12 diff -u -d -r1.11 -r1.12 --- projects.php 15 Oct 2005 08:54:40 -0000 1.11 +++ projects.php 20 Oct 2005 17:01:17 -0000 1.12 @@ -164,7 +164,23 @@ 'big' => 'jglmark_2.jpg'), 2 => array( 'small' => 'jglmark_small_3.jpg', - 'big' => 'jglmark_3.jpg'))); + 'big' => 'jglmark_3.jpg'))); + + $projects[] = array( + 'name' => 'Drommi Race', + 'url' => 'http://www.drommiracing.com/', + 'type' => 'Commercial TV-Game', + 'desc' => 'Bet on your favorite Camelus dromedarius to win the race for you. And then send some SMS to shoot some whips, spurs or even flying carpets to enliven your drommi. The more items you collect the faster your drommi will go. But be aware that you play with or agains all others watching the race! Others may have bet on the same drommi and help you. But most will bet on one of the other eight drommies in the race, so you\'ll have though competition. The game runs on SuperRTL in Germany and in Cairos Tasliya TV. It is using UTF-16 and therefore multilingual.', + 'screens' => array( + 0 => array( + 'small' => 'drommi_small_1.jpg', + 'big' => ''), + 1 => array( + 'small' => 'drommi_small_2.jpg', + 'big' => ''), + 2 => array( + 'small' => 'drommi_small_3.jpg', + 'big' => ''))); function displayProjects() { @@ -192,7 +208,12 @@ echo " <td colspan=\"2\"><br/>\n"; for ($i = 0; $i < count($project['screens']); $i++) { - echo " <a href=\"javascript: openPopUp('".urlencode($project['screens'][$i]['big'])."');\"><img src=\"_gfx/projects/".$project['screens'][$i]['small']."\" border=\"0\" alt=\"\"/></a>\n"; + echo " "; + if($project['screens'][$i]['big'] != "") { + echo "<a href=\"javascript: openPopUp('".urlencode($project['screens'][$i]['big'])."');\"><img src=\"_gfx/projects/".$project['screens'][$i]['small']."\" border=\"0\" alt=\"\"/></a>\n"; + } else { + echo "<img src=\"_gfx/projects/".$project['screens'][$i]['small']."\" border=\"0\" alt=\"\"/>\n"; + } } echo " <br/><br/></td>\n"; |