PHP script show value

Moderator: leecollings

Post Reply
Knibor
Posts: 112
Joined: Sunday 20 May 2018 12:56
Target OS: Raspberry Pi / ODroid
Domoticz version: Stable
Location: NL
Contact:

PHP script show value

Post by Knibor »

Hi,

I use this PHP script on my website to show the actual temperature in my living room.
But this value doesn't auto update.
Can someone help me to make this script auto update?

#!/usr/bin/php
<?php
$json_string = file_get_contents("http://192.168.1.37:8080/json.htm?type=devices&rid=37");
$parsed_json = json_decode($json_string, true);
$test_link = "/home/pi/domoticz/scripts/test_1.txt";
$test_data = fopen ($test_link, "w+");
fwrite ($test_data, print_R($parsed_json, TRUE));
fclose ($test_data);
$parsed_json = $parsed_json['result'][0];
$temp = $parsed_json['Temp'];
echo "".$temp.""."\n";

Thanks
User avatar
Egregius
Posts: 2592
Joined: Thursday 09 April 2015 12:19
Target OS: Linux
Domoticz version: v2024.7
Location: Beitem, BE
Contact:

Re: PHP script show value

Post by Egregius »

Depending on your needs you could use a small javascript to refresh the browser window:

Code: Select all

<script type="text/javascript">
	setTimeout("window.location.href=window.location.href;",15000);
</script>
You could also have a look at my PHPFloorplan and unleash the power of PHP on Domoticz :-)
Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest