|
Gyan Hi Dhyan Hai !!!
| |
 |
Pick of the week |
 |
|
|
 |
Quotes |
 |
|
|
 |
Author of the week |
 |
|
|
| |
 |
Author: |
|
|
|
|
|
|
//Displaying hot selling books
echo '
 |
Hot Sellings-Fiction |
 |
|
';
$newFBooks = my_query("Select * from hotsellings where active='1' AND bType='1'", $db);
while($rs = mysql_fetch_array($newFBooks)){
echo '
| '.$rs['cRank'].' ('.($rs['pRank']==0?'-':$rs['pRank']).') |
'.$rs['title'].' |
'.$rs['author'].' |
'.$rs['publisher'].' |
';
}
echo '
 |
Hot Sellings-Non Fiction |
 |
|
';
$newNFBooks = my_query("Select * from hotsellings where active='1' AND bType='0'", $db);
while($ks = mysql_fetch_array($newNFBooks)){
echo '
| '.$ks['cRank'].' ('.($ks['pRank']==0?'-':$ks['pRank']).') |
'.$ks['title'].' |
'.$ks['author'].' |
'.$ks['publisher'].' |
';
}
echo '
* Last month\'s rating in brackets.
Courtesy: India Today ';
include(dirname(__FILE__).'/includes/footer.php');
?> |