Why is'nt the variable printing.
echo "<li>Count adjusted for Item: $row(description).<br>";
Here is what I get..... count adjusted for Item: Array(description).
Hi,
try
echo "<li>Count adjusted for Item: {$row['description']}<br>";
or
echo "<li>Count adjusted for Item: ".$row['description']."<br>";
Thomas