« Back to Glossary Index

Backend development covers everything that happens behind the scenes of a website — the parts a visitor never sees but that make the site actually function. Where frontend development handles what's displayed in the browser, backend development handles the server, the database, and the application logic that ties them together: processing form submissions, running searches, checking a login, or calculating a shopping cart total.

  • Server — the machine that receives requests and sends back responses
  • Database — where content, user accounts, and other data actually live
  • Application logic — the code that decides what to do with a request

For a WordPress site owner, backend development mostly happens under the hood already — WordPress's PHP core and MySQL database handle it for you. It becomes directly relevant the moment you build a custom plugin, connect an external API, or need functionality no existing plugin covers.

« Back to Index
Share This