+ 1
Who can tell me what is the differens beetwen SQL and PHP
2 Réponses
+ 3
SQL is structured query language - a language for communicating with database servers like MySQL, Oracle, MS-SQL etc.
PHP is a server-side scripting language usually implemented as a module in the Apache webserver - it is able to do tasks on the server such as issue SQL queries to a database as well as create HTML on the fly. It only runs within the webserver in response to a user's web request.
SQL allows the integration of a database either on the web or on a server. It can often be used in collaboration with PHP.
+ 2
SQL is used to Database whereas PHP is used as server side scripting language in servers they are totally different.