Data for Chart is retrieved from Remote Site Database

Notes:
We will retrieve data from remote MySql Datenbases. Remote site has php-RGraph installed and is using php-RGraph's MySql interface.

{rgraph height="400" width="600" variantThreedOffsety="10"  variantThreedOffsetx="15"
data="url" url="http://www.oberquembach.de/index.php?option=com_content&tmpl=getJsonDatafromDB"  
type="Bar" tooltip="#label# <br>#val# Hits" title="Most read at oberquembach.de" xaxisLabelsAngle="20"
marginBottom="105" truncate_label="20,..." variant="3d" tooltipsPositionStatic="0"}sample006{/rgraph}
[No canvas support]>
Access to remote MySql Database is done with a tiny PHP-Script, which will be triggered for execution via parameter data="url" and "url". It uses php-RGraph's Version 2 interfaces (via "rgraph_chart.php").

Here you have this PHP-Script - "getJsonDatafromDB.php", which has been installed in directory "../templates/system" on remote site (www.oberquembach.de):

<?php
defined('_JEXEC') or die('Restricted access');
$lib = JPATH_ROOT . "/php-apps/RGraph/lib/rgraph_chart.php";
require_once ($lib);
use phpRGraph\rgraph_chart;

$db_config_file = $_SERVER["DOCUMENT_ROOT"] . "/configuration.php";
$sql="Select title, hits From j25_content Order By hits Desc Limit 10";
$dbdata = rgraph_chart::getDataFromDB($db_config_file, $sql);

$data = array("labels"=>$dbdata[0], "data"=>$dbdata[1]);

echo json_encode($data);
?>

Important: If you want to test this sample via copy/paste, ensure that you paste with option "paste as plain text" otherwise imbedded html-codes may invalidate your input.

 

go back...

Visitors

Today: 2
Yesterday: 56
This Week: 241
Last Week: 339
This Month: 379
Last Month: 1,626
Total: 231,811
0231811
Germany 30.3% Germany
USA 23.4% USA
France 3.3% France
Italy 2.8% Italy
Indonesia 2.1% Indonesia
Poland 2.0% Poland
Netherlands 1.8% Netherlands
Spain 1.8% Spain
India 1.8% India

Total:

208

Countries

Weather

Weather in Ashburn

9th December, 2023 - 9:34
Clear Sky
37°F 32°F min 44°F max
13:17 22:47
Humidity: 87 %
Wind: 0.0 mph North
Pressure: 1,021 hPa
Visibility: 32,808 ft
We use cookies

We use cookies on our website. Some of them are essential for the operation of the site, while others help us to improve this site and the user experience (tracking cookies). You can decide for yourself whether you want to allow cookies or not. Please note that if you reject them, you may not be able to use all the functionalities of the site.