www/getwatersources.php

Fri, 30 Nov 2018 17:40:39 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Fri, 30 Nov 2018 17:40:39 +0100
changeset 116
ac993ef43b13
parent 99
f433193f7bb6
child 146
2a6c00d325b2
permissions
-rw-r--r--

Removed all calculations from the equipemnts database script and added missing fields. Added missing fields to the inventory equipemnts edit screen. Added conditional batch size calculation to the equipments editor. Added specific heat settings to the equipments editor.

<?php
require_once('config.php');

$query = "SELECT * FROM inventory_waters ORDER BY name";
$connect = mysqli_connect(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
if (! $connect) {
	echo "[]";
	return;
}
$result = mysqli_query($connect, $query);
while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
	$waters[] = array(
		'record' => $row['record'],
		'name' => $row['name'],
		'unlimited_stock' => $row['unlimited_stock'],
		'calcium' => $row['calcium'],
		'sulfate' => $row['sulfate'],
		'chloride' => $row['chloride'],
		'sodium' => $row['sodium'],
		'magnesium' => $row['magnesium'],
		'ph' => $row['ph'],
		'total_alkalinity' => $row['total_alkalinity'],
		'cost' => $row['cost']
	);
}
echo json_encode($waters);

mercurial