CorporateVirtual Posted February 22, 2013 Report Posted February 22, 2013 Hello, Is there any code I can use to display how many airlines we have? Regards. Daniel Cormack Website : http://www.corporateva.co.uk/index.php Email : ceo@corporateva.co.uk Quote
josh90 Posted February 22, 2013 Report Posted February 22, 2013 Hello, Perhaps you could use something like: <?php $querydb ="SELECT count(name) AS total FROM phpvms_airlines"; $dbrow = DB::get_row($querydb); echo $dbrow->total; ?> Just checks how many rows are in your phpvms_airlines table, each airline has their own row, so just counts them up. Hope it helps Josh Quote
CorporateVirtual Posted February 22, 2013 Author Report Posted February 22, 2013 Hello, Perhaps you could use something like: <?php $querydb ="SELECT count(name) AS total FROM phpvms_airlines"; $dbrow = DB::get_row($querydb); echo $dbrow->total; ?> Just checks how many rows are in your phpvms_airlines table, each airline has their own row, so just counts them up. Hope it helps Josh Thanks very much for your help, works perfect! Regards. Daniel Cormack Website : http://www.corporateva.co.uk/index.php Email : ceo@corporateva.co.uk Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.