Ausgabe in mehrere Spalten via modulo?!

bbs-treff

Grünschnabel
hi, bekomme es einfach nicht gebacken! Die Ausgabe brauch ich in mehreren Spalten und nicht in einer wie es jetzt ist. Hab es mit modulo versucht aber irgendwas mach ich falsch. Schon mal n Danke für die Hilfe!!
PHP:
//retrieve params

$width = $params->get('width');

$chars = $params->get('chars');

$count = $params->get('count');

		$query = "SELECT * FROM ".$mosConfig_dbprefix."joomlaflashgames WHERE published=1 ORDER BY date DESC LIMIT ".$count; 
     
		$database->setQuery( $query );

		$rows1 = $database->loadObjectList();
?>

<table align="center">

<?php		

foreach($rows1 as $rows) {

?>

<tr>
 
	<td width="<?php echo ($width+2);?>" align="left"><a href="<?php echo sefRelToAbs($varString2."&task=view&catid=".$rows->catid."&id=".$rows->id."&Itemid=".$_GET['Itemid']); ?>"><img title="<?php echo $rows->title; ?>" src="<?php echo $varString.$rows->imagefile; ?>" width="<? echo $width; ?>" height="<? echo $width; ?>" border="1" /></a></td>  echo "</td>";
    
	
</tr>

<?php } //end foreach ?>
</table> 
<?php } //end loadData ?>
 
Zuletzt bearbeitet:
hoffe es kann mir jemand helfen... ich verzweifel langsam...:confused:

PHP:
  <description>Module to display a image of the latest game installed.</description>
  <files>
   <filename module="mod_joomlaflashgames_latest_added">mod_joomlaflashgames_latest_added.php</filename>
  </files>
<params>
 <param name="width" type="text" size="5" default="50" label="Width/Height of image" description="Width and Height of thumbnail image in PIXELS." />
 <param name="count" type="list" default="3" label="How many?" description="Display how many scores?">
 	<option value="1">1</option>
 	<option value="3">3</option>
	<option value="5">5</option>
	<option value="7">7</option>
	<option value="10">10</option>
    <option value="20">20</option>
 </param>
 </param>
 <param name="chars" type="text" size="5" default="35" label="Chars displayed" description="Number of characters of the title that will be displayed." />
</params> 
</mosinstall>
 
Zurück