0 votes
in PHP by
How to create database connection and query in PHP?

1 Answer

0 votes
by

Since PHP 4.3, mysql_reate_db() is deprecated. Now you can use the following 2 alternatives.

mysqli_query()

PDO::_query()

...