Forum Moderators: mack
Say there is a PHP script resides on a PHP enable server
which takes two numbers from a user (via a web form) and
display the sum of them.
It takes number one to the variable $no_one and number
two to the variable $no_two and result is passed to the
variable $sum.
When two users pass inputs to this script at the same time
from two different locations, how does the script handle it?
Are two instances of the script created and instance of
each variable created for each request?