This commit is contained in:
Ceda EI 2018-07-01 16:18:10 +05:30
parent 08bc8d02a6
commit e33960944f
1 changed files with 3 additions and 4 deletions

View File

@ -123,14 +123,13 @@ function get_updated_req() {
$sql = "SELECT name, quantity FROM req WHERE quantity > 0;"; $sql = "SELECT name, quantity FROM req WHERE quantity > 0;";
$result = $conn->query($sql); $result = $conn->query($sql);
$text = "";
if ($result->num_rows > 0) { if ($result->num_rows > 0) {
$text = "";
while($row = $result->fetch_assoc()) { while($row = $result->fetch_assoc()) {
$text .= $row["id"] . " " . $row["quantity"] . "\n"; $text .= $row["name"] . " " . $row["quantity"] . "\n";
} }
return $text;
} else { } else {
return "Everything is complete"; $text = "Everything is complete";
} }
edit_html($text); edit_html($text);
} }