PHPFixing
  • Privacy Policy
  • TOS
  • Ask Question
  • Contact Us
  • Home
  • PHP
  • Programming
  • SQL Injection
  • Web3.0

Monday, July 4, 2022

[FIXED] How to have one database query create two charts using pchart library?

 July 04, 2022     html, pchart, php     No comments   

Issue

I am quite new to pcharts and understand the mechanics. I nicely made a page where I show a single graph in my template by using the <img src='graph1.php'> logic.

I now have a pretty heavy query that provides me with the right data to create 4 charts. I only want to execute this query once (to minimize database load) and then have the four charts generated and loaded into my webpage. BTW. the query performance can not be improved, so that's no option.

I was thinking of query.php that generates 5 arrays (one for the common x-axis and 4 for each different graphs y-axis value).

But then I have no clue how I can pass these arrays on to the graph1.php, graph2.php, graph3.php and graph4.php files so the charts can be generated.

What is a smart way to do this? I'd rather not write (temporary) files to the server.

Thanks,

Geoffrey


Solution

Write the query result into the session and access it from the corresponding script. (Just make a check wether the data exists in the session and if not, execute the query just once)



Answered By - Louis Huppenbauer
Answer Checked By - Marilyn (PHPFixing Volunteer)
  • Share This:  
  •  Facebook
  •  Twitter
  •  Stumble
  •  Digg
Newer Post Older Post Home

0 Comments:

Post a Comment

Note: Only a member of this blog may post a comment.

Total Pageviews

Featured Post

Why Learn PHP Programming

Why Learn PHP Programming A widely-used open source scripting language PHP is one of the most popular programming languages in the world. It...

Subscribe To

Posts
Atom
Posts
Comments
Atom
Comments

Copyright © PHPFixing