Execution order of Server Side and Client Side Code?
-
I know server-side code executes on the server and client-side executes in the browser. My question is, in what order do these events actually happen? A specific, step-by-step explanation of the web page life cycle would be great. I ask because I want to know if you can embed PHP into a piece of JavaScript. The way I understand the web page life cycle: 1. The server executes ALL of the PHP code in a file. 2. The file generated from this execution is then sent to the client. 3. The client runs all JavaScript code. If this is how it works, PHP should be embedded into Javascript no problem, because PHP comes first. However, it doesn't seem to work, so I'm thinking I have the life cycle wrong.
-
Answer:
1. Request sent to server for web page. 2. Server receives request and locates the page 3. The page is scanned for any server side processing, PHP, CGI etc and executes it 4. The now extended page is sent back to client. 5. Client machine executes any html, CSS or Javascript it finds and displays the page based on browser rules. PHP code can be placed anywhere in a page. Including imbedded in CSS or Javascript. There is only one pass of execution for both server side and client side so if something is not working then look at the source file to see what is wrong. Have fun.
Stereota... at Yahoo! Answers Visit the source
Other answers
Your order is correct, but your explanation doesn't make sense. After step 2, any php is just treated as text (rendered page based on the browser). The only code that can be ran after step 2 is client side code aka javascript, jquery. If you embed the php in javascript then it does no good, the browser doesn't know what php code is, the browser pretty much only knows javascript and html. You need to either conditionally include javascript from your php or need another roundtrip to the server to execute the php.
CramShark.com
Related Q & A:
- What risks do I have to consider when encrypting server side as opposed to client-side?Best solution by Information Security
- Can I get OSQL if I install SQL Server Client Tools?Best solution by Database Administrators
- How to get server response with netty client?Best solution by Stack Overflow
- How cookies are handled if you use a proxy between a client and server in HTTP?Best solution by Stack Overflow
- How can I get the remote server's date and time at the client side in my application in c#?Best solution by Stack Overflow
Just Added Q & A:
- How many active mobile subscribers are there in China?Best solution by Quora
- How to find the right vacation?Best solution by bookit.com
- How To Make Your Own Primer?Best solution by thekrazycouponlady.com
- How do you get the domain & range?Best solution by ChaCha
- How do you open pop up blockers?Best solution by Yahoo! Answers
For every problem there is a solution! Proved by Solucija.
-
Got an issue and looking for advice?
-
Ask Solucija to search every corner of the Web for help.
-
Get workable solutions and helpful tips in a moment.
Just ask Solucija about an issue you face and immediately get a list of ready solutions, answers and tips from other Internet users. We always provide the most suitable and complete answer to your question at the top, along with a few good alternatives below.