|
nice article Yuneek. i'll just point out a few things:
html isn't so much a programming language, html stands for hypertext markup language, it is more a markup language than a programming language, as there is a limit to what you can do with it. strictly speaking with html, you can't make up your own sections, you use predefined tags to create a desired effect, you can't simply create your own tags with html.
php: hypertext preprocessor is a real programming language. many beginners see websites that boast php engines and start looking for php templates and such (this is what i did). php is a language that is entirely processed before any html is sent to the user. for this reason, you cannot view php source code by clicking View Source in your browser, you simply see the processed html code that php will output. you can't simply create a website in php without using html.
|