1 reply [Last post]
ronaldken
Offline
newbie
USA
Last seen: 13 years 49 weeks ago
USA
Joined: 2009-06-26
Posts: 1
Points: 0

Pls tell me what is the difference between CSS & PHP ?

Tags:
wolfcry911
wolfcry911's picture
Offline
Guru
MA, USA
Last seen: 9 years 13 weeks ago
MA, USA
Timezone: GMT-5
Joined: 2004-09-01
Posts: 3224
Points: 237

other than the fact that

other than the fact that they're each a 3 letter acronym and both used in web dev, they have little else in common.

CSS - cascading style sheets are used for styling an (x)html web page
PHP - PHP Hypertext Preprocessor (or Personal Home Page as originally designated) is a server side processing language.

basically you would use PHP to dynamically create html pages which are served to client browsers. CSS would control the styling of said pages. PHP could be used to dynamically change CSS as well, but I don't want to confuse you.