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: