Some questions about PHP?

  • Thread starter Thread starter samurai
  • Start date Start date
S

samurai

Guest
I'm learning PHP. I have some questions. When you write down PHP code and save it, where will you save your PHP code? Is it on your web server application? And what will access the PHP code? The PHP parser? In what condition? I mean what will directly trigger the access to the PHP code? Will the same PHP code be accessed and executed again and again or just once when lots of users visit your website? Is the plain PHP code stored on the web server application?
 
PHP scripts need to uploaded to your server just like regular HTML files. They are executed whenever a user browses to them.
 
Back
Top