|
html is just markup. No processing on any data.
While php is server side scripting language. You can process actual data and can produce new data. You can access databases, work with images, send mails and many other things.
Web server supporting php will ultimately generate html code and sends it to client and browser will just output it on screen.
|