Hi.
How do I get the result of this qury??
$conn = db_connect();
$sql5 = "SELECT SUM(counter) FROM standardbrev WHERE produkt = '$id'";
$result5 = mysql_query($sql5, $conn);
Which function do I have to use to show the result of all the numbers in my database where "produkt" is Bricks ($id)??
Kj.