I have PHP
code that grabs some data from a server and then uses it to construct a PDF. As part of the PDF, I'd like to include a google chart. However, google chart is Javascript
. Since I'm relatively new to web programming, can anyone provide suggestions on how I can incorporate google charts into a PHP
script. Note, the data that the PHP
script retrieves will be needed to construct the chart, so if it is a separate Javascript
file or something, then it will need to somehow pass in data.
Thanks in advance!