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


Recent Events
  • 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.

  • 21/11/2023 BLACK FRIDAY 23 is coming

    BIG SALE, 35% discount for all our extensions. Use BF23 coupon code. Hurry up the discount is valid till 27 November.


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?

numbering rows
(1 viewing) (1) Guest
Go to bottomPage: 1
TOPIC: numbering rows
#59938
numbering rows 7 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 7 Years, 1 Month ago Karma: 747
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 7 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 7 Years, 1 Month ago Karma: 747
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