www/getmiscsources.php

Mon, 05 Jul 2021 20:59:10 +0200

author
Michiel Broek <mbroek@mbse.eu>
date
Mon, 05 Jul 2021 20:59:10 +0200
changeset 770
dc37f2b0a00b
parent 705
d77b723f7b35
child 771
9856238e9217
permissions
-rw-r--r--

Killed the refractometer calculation by Sean Terrill as it is not good enough.

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

$query = "SELECT * FROM inventory_miscs ORDER BY 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)) {
	$miscs[] = array(
		'record' => $row['record'],
		'name' => $row['name'],
		'type' => $row['type'],
		'use_use' => $row['use_use'],
		'time' => $row['time'],
		'amount_is_weight' => $row['amount_is_weight'],
		'inventory' => $row['inventory'],
		'cost' => $row['cost']
	);
}
header("Content-type: application/json");
echo json_encode($miscs);

mercurial