0
how does php differ from sql ?
3 Answers
+ 4
PHP is a server side script language, SQL is a database structure language. they aren't comparable. you can use PHP to execute SQL commands, but not vice versa.
+ 4
sort of. you'll have to establish a connection to the database first and can then pass queries to it.
0
so php can run queries as well ?