+ 1
Can we use Python, html, java, css, javascript and SQL together in one app or webpage?
4 Answers
+ 2
Just curious. What do you do usually? single language apps?
+ 1
Probably, but why!? It would be a mess.
+ 1
Normally with websites I use a framework. However, in the past I've used PHP, MySQL and Javascript (jQuery too) together. Most other applications I stick to single languages. The web is different.
PHP and python are server-side languages (in a web context anyway). You only need one server-side language per website. Javascript is client-side (meaning it runs on the user's browser).
You could use python OR PHP for web, but messy to use both.
+ 1
Thank you. That explains a lot!