what is the order of execution in web ? PHP, HTML, Javascript, css and mysql are the items to execute
The order is like this:
Here is an example:
Server: execute index.php file on the server
<?php echo "Hello, world!;"; ?> <script>alert("hello!")</script>
Server: respond the output
<script>
alert("hello!")
2.1m questions
2.1m answers
60 comments
57.0k users