File: /home/imensosw/public_html/imenso.co/demo/test/index.php
<?php
$servername = "localhost";
$username = "hautehire";
$password = "#riyEVw+H3[x";
$dbname = "hautehire";
// Create connection
$conn = mysqli_connect($servername, $username, $password, $dbname);
// Check connection
if (!$conn) {
die("Connection failed: " . mysqli_connect_error());
}
$sql = "SELECT * FROM purchasify_users";
$result = mysqli_query($conn, $sql);
if (mysqli_num_rows($result) > 0) {
// output data of each row
while($row = mysqli_fetch_assoc($result)) {
echo $row['fname'];
}
}
?>