Thread
:
sorting question
View Single Post
10-10-2005, 02:52 PM
#
10
(
permalink
)
teknomage1
Jack of all trades
Join Date: Feb 2005
Location: Los Angeles
Posts: 598
Well, if you still want to store items with leading zeroes but not show them to the user, you could transform the field before the user sees it.
PHP Code:
preg_replace
(
"/([A-Za-z]+)0*(\d+)/"
,
"$1$2"
,
$configname
);
__________________
Stop intellectual property from infringing on me
teknomage1
View Public Profile
Find More Posts by teknomage1