Hey all,
Looking for some quick guidance, Trying to make it so that I can have a field which presents how many customers the database has.
E.g
This is the DB:
This is my php:
<?PHP
$id_customers = "SELECT id FROM Customers";
$Customeramount = mysql_query($id_customers) or die(mysql_error());
echo $Customeramount;
?>
Result I am getting:
Resource id #2