Tried this:
<?php
$cxn = mysqli_connect("localhost","henkbart","","customer")
or die("Couldn't connect to server");
$query = "SHOW COLUMNS customer";
$result = mysqli_query($cxn,$query);
echo $result;
?>
But nothing is happening? WHat am I doing wrong?
Changed to: $query = "SELECT *...