Why is the first record empty? It’s not empty the first record becomes the second record and the first one is empty and it appears out of nowhere
This is the code
mysql_select_db($database_webiceberg, $webiceberg);
$query_services = "SELECT
services.dynamic_price,
services.database_price
from services
where lang=2 " ;
$services = mysql_query($query_services, $webiceberg) or die(mysql_error());
This part of the code is in the body
<?php do {
$title = $row_services['dynamic_price'];
$database_price = $row_services['database_price'];
$id = $row_services['id_services'];
?>
<tr id="<?php echo $id;?>">
<td class="matrixItem" >
<a href="WebDesign.php?cattegory=<?php echo $cattegory; ?>" id="nigga"><?php echo $title; ?></a>
</td>
</tr>
<?php } while ($row_services = mysql_fetch_assoc($services));
?>
I deleted parts of the code in this to give it more syntax and coz the code i deleted was redundant
Could you try this?