Lukas' Notes

web

Definition

Server-Side Scripting

Server-side scripting produces a dynamic site: a page whose content depends on data in the incoming HTTP request. Any programming language can run on the server side, though PHP remains the most widely deployed, followed by Ruby, Java, JavaScript, Python, and others.

Typical responsibilities are session management, database interaction, dynamic HTML generation, and API serving. Web frameworks (Flask, Django, Laravel, Express, Spring, etc.) wrap a language to ease development.

Example