Fri, 2009-06-26 19:16
Pls tell me what is the difference between CSS & PHP ?
Fri, 2009-06-26 19:23
#1
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.