Afisare pe doua coloane de tabel date din Select MySQL
Scris: Lun Oct 01, 2012
Am scriptul acesta. Normal trebuia sa afiseze pe 2 coloane de tabel si dupa asta sa sara la alt rand, dar nu o face, imi afiseaza informatiile una sub alta.
Stie cineva unde e gresit ?
Stie cineva unde e gresit ?
Cod: Selectaţi tot
<?php
mysql_select_db($NumeBazaDate,$conexiune);
$result=mysql_query("SELECT *FROM newprod");
$counter = 0;
echo '<table border="0" cellpadding="0" cellspacing="0" width="980" align="center">
<tr>';
while($row = mysql_fetch_array($result)){
$counter++;
if ($counter % 2 == 0) echo '</tr><tr>';
echo '<td valign="top" width="450">';
echo '
<h3 id="newprodlist"><a href="">'.$row['title'].'</a></h3><br />
<div class="textswao2"><img src="additionalimg/img1.jpg" width="130" height="105" style="float:left;margin:0 15px 0 0;">'.$row['des'].'</div><br />';
echo '</td>';
}
echo '</tr></table>';
mysql_close($conexiune);
?>