I have a problem. I am trying to create highchart from php. Everything was fine, but I can’t do one thing. I need to paste this code
event => Array (
load => requestData (),
)
The problem is that php interprets the code as a function, and if I put
load => 'requestData ()',
highcharts does not interpret this function. What can I do?
source
share