Hallo Leute habe ein Problem mit mein php script dieser soll eig eine Tabelle öfters abbilden tut dieses jedoch nicht nach längerer Suche und stundenlanger versuchens habe ich beschlossen mein Problem mit euch zu teilen in der hoffnung das einer von euch mir mein Fehler zeigen kann
<?php
include "/storescripts/connect_script.php";
$dynamicList="";
$sql = mysql_query("SELECT*FROM products LIMIT 6");
$productCount = mysql_num_rows($sql);
if ($productCount>0){
while($row = mysql_fetch_array($sql)){
$details=$row["details"];
$id=$row["id"];
$product_name=$row["product_name"];
$price=$row["price"];
$dynamicList .='<table width="730" height="149" border="0">
<tr>
<td width="145"><a href="produkte.php?id='.$id.'"><img style="border:#666 1px solid" src="inventory_images/'.$id.'.jpg" width="147" height="134" alt="'.$product_name.'"/></a></td>
<td width="575"><p>'.$product_name.'</p>
<table width="526" height="95" border="0">
<tr>
<td width="291" height="91"><p>'.$price.'€</p>
<p>Auf Lager</p>
<br>
<br>
<p a href="produkte.php?id='.$id.'">Produkt ansehen</p></td>
<td width="225">'.$details.'</td>
</tr>
</table></td>
</tr>
</table>';
}
}else{
$dynamicList="Keine Produkte gelistet";
}
mysql_close();
?>