| Path : /proc/thread-self/root/opt/apache/htdocs/ |
| Current File : //proc/thread-self/root/opt/apache/htdocs/test.php |
<?php
$servername = "localhost";
$username = "root";
$password = "";
$dbname = "mysql";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
echo "MySQL Connected Successfully<br>";
date_default_timezone_set('Asia/Seoul');
$current_time = date('Y-m-d H:i:s');
echo "Current time: " . $current_time;
$conn->close();
?>