phpbar.de logo

Mailinglisten-Archive

[php] Darstellung zweispaltig

[php] Darstellung zweispaltig

Rene Paschold (Connect GmbH) paschold_(at)_get-connected.de
Mon, 11 Oct 1999 13:26:53 +0200


Hallo Liste,

ich will einen einfachen Select machen.
Jetzt will ich aber, das immer zwei tabellen neben einander stehen!
So wie ich es habe stehen sie nur untereinander!
Kann mir jemand helfen?
Danke im vorraus und

Viele Grüße
Rene

<?
msql_Connect("localhost"); 
			
$result=msql("protrade", "SELECT * FROM logos ORDER BY artnr");
$i=0;
while ($i < msql_num_Rows($result))
	{
	$id=msql_Result($result,$i,"id");
	$artnr=msql_Result($result,$i,"artnr");
	$logo=msql_Result($result,$i,"logo");
	$logotext_d=msql_Result($result,$i,"logotext_d");
	$logotext_e=msql_Result($result,$i,"logotext_e");
?>

<table border="1" cellpadding="0" cellspacing="0">
<tr>
	<td><b>ID:</b></td>
	<td width="300"><?php print $id ?></td>
</tr>
<tr>
	<td><b>ArtNr:</b></td>
	<td><?php print $artnr ?></td>
</tr>
<tr>
	<td><b>Logo:</b></td>
	<td><?php print $logo ?></td>
</tr>
<tr>
	<td><b>Logotext deutsch:</b></td>
	<td><?php print $logotext_d ?></td>
</tr>
<tr>
	<td><b>Logotext englisch:</b></td>
	<td><?php print $logotext_e ?></td>
</tr>
</table>
<p>


<?php

	$i++;
	}

?>



php::bar PHP Wiki   -   Listenarchive