Tagged Questions
2
votes
5answers
180 views
Is the PHP file instantiated on every AJAX call?
I was just wondering how the PHP is behaving in the background.
Say I have a PHP which creates an array and populates it with names.
$names = Array("Anna", "Jackson" .... "Owen");
Then I have a ...