As I said before, almost all values you need are in parameterlist.txt.
I converted it into parameterlist.php.
You have for example <!--insideTemp--> and <!--insideHumidity-->
In my php file these lines are:
$insideTemp = <!--insideTemp-->;
$insideHumidity = <!--insideHumidity-->;
Since wview replaces the <!--...--> names with their corresponding
values, you get a PHP file containing the whole set of variables
updated each time wview generates it.
For example, after generation, these two lines are converted to something like:
$insideTemp = 23.5;
$insideHumidity = 54;
Then, the only thing you need is to include this file into your pages
and use the PHP varialbles as you want.
Luis Rosety
2009/11/20 mteel <
mtee...@gmail.com>: