\n```\n\n## Server-side scripting\nServer-side scripts execute on the **web server**. They can access databases, authenticate users, process business logic and generate a response.\n\n**Examples:** PHP, JSP/Servlets, ASP.NET, Python web frameworks.\n\n```php\n\n```\n\n## Difference\n\n| Client-side | Server-side |\n|---|---|\n| Runs in browser | Runs on server |\n| Usually used for UI and interaction | Used for business logic/data processing |\n| Can reduce server requests for UI operations | Can access server-side databases/resources |\n| Source is generally delivered to the client | Implementation can remain on the server |\n\n**Summary:** Client-side scripting improves browser-side interaction; server-side scripting processes requests and generates server responses."}}}Back to the 2023 paper
Similar questions
Web TechnologyExplain the difference between client-side and server-side JavaScript.20237mWeb TechnologyWhich of the following is a client-side scripting language? (i) PHP (ii) JavaScript (iii) JSP (iv) Servlet20252mWeb TechnologyWhich technology is used for server-side scripting? (i) HTML (ii) CSS (iii) JSP (iv) JavaScript20252mWeb TechnologyExplain various data types used in JavaScript with the help of examples.20197m