php function integer parameter problem
- by vick
function is_zipcode_valid($zipcode){ ... }
if I call that function with is_zipcode_valid(08004);
my parameter 08004 gets in as 8004, basically it removed all precending 0's.
How can I get around that problem?
thanks