Attachment 135230Attachment 135229
i was buyed this item in web site but showing unlimited in storage. How to change this to limited period:blink:
Printable View
Attachment 135230Attachment 135229
i was buyed this item in web site but showing unlimited in storage. How to change this to limited period:blink:
By altering the RentHourPeriod column in the INSERT query.
but its already there in my odb.AccountItem
You have to modify the query in the website files.
Duration = RentHourPeriod Than if you want to do it for 1 month i guess it's 721 RentHourPeriod. (This is example)
ohh ok ty but i want do it for 15 days how much should i add RentHourPeriod ?
You would have to add something like the RentHourPeriod into the table column of dbo.CashShop with the data type being int. After you edit line 328 in gunz_itemshop.php
To something like this:PHP Code:<td><b>Unlimited</b></td>
OrPHP Code:<td><b>'.$item['RentHourPeriod'].'</b></td>
All you really need to do is edit that line that's all. But I could be wrong since I'm not really looking into the files for more details.PHP Code:<td><b>'.$item['Duration'].'</b></td>