✅ The verified answer to this question is available below. Our community-reviewed solutions help you understand the material better.
Що реалізує наведений нижче скрипт:
<?php
$sql="CREATE DATABASE MyDBExample";
if (mysqli_query($conn, $sql)===TRUE){
echo"Database create seccessfully "; }
else { echo"Error" . mysqli_error($conn); }
mysqli_close($conn);
?>