This is my full page code:
<?php
$servername = "localhost";
$username = "root";
$password = "null";
$dbname = "logs";
$conn = new mysqli($servername, $username, $password, $dbname);
if ($conn->connect_error) {
die("Connection failed: " . $conn->connect_error);
}
$result = mysql_query("SELECT * FROM 'd82Kap3'");
$row = mysql_fetch_array($result);
echo $row['ip'];
?>
This is my table structure: http://prntscr.com/7we7ck
I am trying to make it echo all the records in the field "ip".