I want to get the Value of a MySQL Cell in PHP.
Here is my database table:
My Code:
<?php
$statement = $pdo->prepare("SELECT * FROM servers WHERE id = :id");
$servers = $statement->fetch();
$server = $servers['id'];
echo $server
?>
but it's not doing anything. (I want to get the value of the ID)