www/getyeastsources.php

Mon, 19 Nov 2018 13:44:07 +0100

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 19 Nov 2018 13:44:07 +0100
changeset 105
d06ddc4d1af0
parent 61
3469979f83be
child 141
fe9e2a677611
permissions
-rw-r--r--

Added uuid and locked fields to the recipes table.

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

$query = "SELECT * FROM inventory_yeasts 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)) {
	$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'],
		'attenuation' => $row['attenuation'],
		'inventory' => $row['inventory'],
		'cost' => $row['cost']
	);
}
echo json_encode($yeasts);

mercurial