![]() |
Page system - Printable Version +- SphereCommunity (https://forum.spherecommunity.net) +-- Forum: Sphere 0.56d (/Forum-Sphere-0-56d) +--- Forum: Script Help (/Forum-Script-Help) +--- Thread: Page system (/Thread-Page-system) |
Page system - Pidrila - 04-09-2013 03:53 AM Hello everyone i have a little problem.. What i need is the page numeric system that shows the current page and the number of all pages on the dialog. like this - PAGE: [2/38] There is a problem, because it's need to bee checking by mysql database. i have a script like auction script. but just modifieded.. Script: When item is adding to auction! Code: [FUNCTION f_auction_additem] Auction sell item function, here item is adding in mysql database. Code: DB.EXECUTE "INSERT INTO <topobj.tag.auction_table>(uid, amount, category, name, currentbid, step, minimum_price, saletime, seller) VALUES('<link.uid>','<link.amount>','<eval <tag.category>>','<link.name>','<eval (<argtxt[1]>)>','0','0','99999999999','<src.uid>');" And this is when dialog opens and mysql selects items and showing on the dialog page.. Code: //Mysql query that fetches the rows from <src.ctag.dialogindex> to <src.ctag.dialogindex>+8 what i need is that when dialog opens, it will show how many pages are in the auction that can be calculating by something like this Code: [b]src.ctag.allpages=<eval (((<ctag0.allitems>-1) / 7) + 1)>//how to check how many items are there?? because if i know how many items are there, then i can calculate by something like this Please help me i someone is good a this.. and sorry for my bad english im not so good at it.. /facepalm/ RE: Page system - Pidrila - 04-09-2013 05:27 AM sorry for double posting! i did it myself.. if anyone need it. here it is.. i did simply by taking out id from table and then calculate sum of id (items) in db, -1) / 7) + 1 ! ![]() script. Code: ////PAGE SYSTEM RE: Page system - Pidrila - 04-09-2013 11:07 PM sorry for DP DP.. but there i get a problem.. in this script is for main page of dialog right?? Code: DB.QUERY "SELECT * FROM <tag.auction_table> ORDER BY `id` DESC LIMIT 99999999"; but now i need to get info from only one field in the database calling category.. i tryed to do something like this Code: DB.QUERY "SELECT * FROM <tag.auction_table> WHERE category='1' ORDER BY `id` DESC LIMIT 99999999"; but it's givving the same info as the main page.. i tryed to do <eval (<db.row.0.category>)> or <eval (<db.row.11.id>)> //11 is the field of category but there is no success.. maybe you could help me.. how to get info and then array it on dialog taking info only from one field in db and summing it like id or smth.. Okey i finished it myself.. if someone need it. here it is. Code: DB.QUERY "SELECT COUNT(*) as category1_items FROM <tag.auction_table> WHERE category='1'"; |