Posts

Showing posts with the label create mysql database using php

create mysql database using php

 <?php $servername="localhost"; $username="root"; $password=""; $conn=mysqli_connect($servername,$username, $password); $sql="CREATE DATABASE shrisha"; mysqli_query($conn,$sql); mysqli_close($conn); ?>