Dispaly numeral and Arabic numeral

I’m creating 2 fields in one table one field in English numeral and second Arabic numeral

when i entry the data automatic Arabic numeral display

Ex : English No Arabic no

1 ۱

2 ۲

3 ۳

Well, Arabic numerals are actually what you call “English numerals”, i.e. characters 0-9. I’m not familiar with the other set of numerals, but according to Wikipedia, they’re called Eastern Arabic numerals.

Anyway, you should store number as numbers (such as integer), not as text. “One” means “one” regardless of which format you use to present it. Also, if your fields both represent the same number, you should create a single field only.

Now tell us what exactly you’re trying to achieve and what’s the problem.