Untitled
Anonymous
plain_text
05/29/2023 8:56 AM
412 B
15
Indexable
<?php
$host = "localhost";
$username = "root";
$password = "1234";
$conn = new PDO("mysql:host=$host;dbname=hemlo" ,$username,$password);
echo "Connection established!";
$sql = "create table loveyou(id varchar(30))";
$conn->exec($sql);
echo "<br>Table created!";
?>Editor is loading...