Hello,
Is it ever possible to get instant data update or receival using PHP/MySQL? I know its best to use Java Script and Node.js for this type of jobs but is it possible using PHP or with Cron jobs?
Example1:
Let say, continuous +ve increment effect of some factors and continuous -ve decrement effect of some factors on a variable and getting the value of that variable instantaneously? Here the effects are some PHP programming.
Lets say, a city has a population of 1000 at the moment. Now positive factors like good health is increasing its population whereas negative factors like suicide rate or pollution is decreasing its population.
Lets say population is increasing by +2 and decreasing by -1 at any moment. So how to get instant value of population instantly at that particular moment
Thank you