Posts

Showing posts with the label javascript

ABOUT JAVASCRIPT, NODE.js AND PHP

What is JavaScript all about, and can JavaScript be used together with PHP for a website", JavaScript is the only programming language natively supported by browsers. Within a browser, JavaScript allows you to create interactions with users. For example, you can program logic for how it will respond when a user clicks a button, or it can be used to send data somewhere. HTML (HyperText Markup Language) is used to apply meaningful structure to content. It is most commonly used for laying content out. CSS (Cascading Style Sheets) is a styling markup language, used to implement the design of a web page. These three technologies make up the “frontend stack”. PHP is a server side programing language. Technically, PHP is not part of a website (it does not run in a browser). However; it can be used to generate web code, communicate with databases, and even communicate with other computers. It’s responsible for all the “behind the scenes” stuff. In modern web development, PHP is...