www/getyeastsources.php

Sun, 23 May 2021 16:41:35 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Sun, 23 May 2021 16:41:35 +0200
changeset 752
f68e3bbc1ada
parent 726
872a3635e4ef
child 771
9856238e9217
permissions
-rw-r--r--

Fermentables, hops, miscs and yeast now have tests against the added moment with the brewing stage. Added to inventory edit rows, delete rows, and pick choices for the moment to add or edit. Some more popups to explain certain blocks.

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

$query = "SELECT * FROM inventory_yeasts ORDER BY laboratory,product_id,name";
$connect = mysqli_connect(DBASE_HOST,DBASE_USER,DBASE_PASS,DBASE_NAME);
if (! $connect) {
	echo "[]";
	return;
}
mysqli_set_charset($connect, "utf8");
$result = mysqli_query($connect, $query);
while ($row = mysqli_fetch_array($result, MYSQLI_ASSOC)) {
	$yeasts[] = array(
		'record' => $row['record'],
		'name' => $row['name'],
		'type' => $row['type'],
		'form' => $row['form'],
		'laboratory' => $row['laboratory'],
		'product_id' => $row['product_id'],
		'min_temperature' => $row['min_temperature'],
		'max_temperature' => $row['max_temperature'],
		'flocculation' => $row['flocculation'],
		'attenuation' => $row['attenuation'],
		'cells' => $row['cells'],
		'inventory' => $row['inventory'],
		'cost' => $row['cost'],
		'tolerance' => $row['tolerance'],
		'sta1' => $row['sta1'],
		'bacteria' => $row['bacteria'],
		'harvest_top' => $row['harvest_top'],
		'harvest_time' => $row['harvest_time'],
		'pitch_temperature' => $row['pitch_temperature'],
		'pofpos' => $row['pofpos'],
		'zymocide' => $row['zymocide'],
		'gr_hl_lo' => $row['gr_hl_lo'],
		'sg_lo' => $row['sg_lo'],
		'gr_hl_hi' => $row['gr_hl_hi'],
		'sg_hi' => $row['sg_hi']
	);
}
header("Content-type: application/json");
echo json_encode($yeasts);

mercurial