20 lines
365 B
PHP
20 lines
365 B
PHP
<?php
|
|
|
|
|
|
function order_klanbooks_kuri(){
|
|
|
|
|
|
$books = db_get("
|
|
SELECT price_id, pricename, priceauthor, author, price.priceauthor_id as author_id
|
|
FROM `price`
|
|
LEFT JOIN `price_authors`
|
|
ON `price`.`priceauthor_id` = `price_authors`.`author_id`
|
|
WHERE `category_id` = 3 AND `sub` = 1
|
|
|
|
");
|
|
|
|
include VIEWPATH.'klanbooks.phtml';
|
|
|
|
|
|
}
|