Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
menu search
person
Welcome To Ask or Share your Answers For Others

Categories

what is the order of execution in web ? PHP, HTML, Javascript, css and mysql are the items to execute

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
775 views
Welcome To Ask or Share your Answers For Others

1 Answer

The order is like this:

  • Browser - send request
  • Server - execute PHP script
  • Server - send output to browser
  • Browser - read output and execute JavaScript

Here is an example:

  • Browser: requesting page /index.php
  • Server: execute index.php file on the server

    <?php echo "Hello, world!;"; ?> <script>alert("hello!")</script>

  • Server: respond the output

  • Browser: parse the output
  • Browser: <script> detected, alert("hello!")

image


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
thumb_up_alt 0 like thumb_down_alt 0 dislike
Welcome to ShenZhenJia Knowledge Sharing Community for programmer and developer-Open, Learning and Share
...