Home News Contact Us Forum About Us Demos Products F.A.Q.
Shopping Cart
You currently have 0 items in your cart.


Recent Events
  • 23/11/2024 Black Friday 2024

    BIG SALE, 30% discount for all our extensions. Use BF24 coupon code. Hurry up the discount is valid till 3 December.

  • 31/12/2023 New Year SALE

    We are glad to announce New Year SALE. 25% discount for all our extensions. Use NY24 coupon code. Hurry up the discount is valid till 7 January.


2Checkout.com, Inc. is an authorized retailer of goods and services provided by ARI Soft. 2CheckOut




Follow us on twitter



Welcome, Guest
Please Login or Register.    Lost Password?
Go to bottomPage: 1
TOPIC: numbering rows
#59938
numbering rows 8 Years, 1 Month ago Karma: 0
how to setting ari soft content for numbering rows..step by step please...

id,name
7,eka
4,maya
6,jack

i want like this
no,id,name
1,7,eka
2,4,maya
3,6,jack
The administrator has disabled public write access.
 
#59943
Re:numbering rows 8 Years, 1 Month ago Karma: 763
Hello,

Currently the extension doesn't support this ability.

BTW, If you show data from a database, it is possible to numbering rows in SQL query and numbers in a table.

Regards,
ARI Soft
The administrator has disabled public write access.
 
#59945
Re:numbering rows 8 Years, 1 Month ago Karma: 0
yes i want to view table from database with numbering..how?
The administrator has disabled public write access.
 
#59948
Re:numbering rows 8 Years, 1 Month ago Karma: 763
It is possible to use this solution. A sample query:

Code:


SELECT
 @rownum := @rownum + 1 AS rank,
 id,
 title
FROM
 #__content, 
 (SELECT @rownum := 0) R



Regards,
ARI Soft
The administrator has disabled public write access.
 
Go to topPage: 1