0byt3m1n1
Path:
/
data
/
17
/
1
/
18
/
11
/
1670011
/
user
/
1801231
/
htdocs
/
metalsh
/
[
Home
]
File: test.php
<?php $servername = "mysqlv111"; $username = "metalshe"; $password = "hu4KspDME34!W4v"; $dbname = "metalshe"; // Create connection $conn = new mysqli($servername, $username, $password, $dbname); // Check connection if ($conn->connect_error) { die("Connection failed: " . $conn->connect_error); } echo "Connected successfully"; // Close the connection $conn->close(); ?>