Ver original// mal:echo "<br>$row["titol"]<br>"; // bien:echo "<br>$row[titol]<br>"; // mejor:echo "<br>" . $row["titol"] . "<br>";