I have a form that will have anything from "0000" to "9999" entered into it, but I have a problem.

While the entered information is a number, I need to keep it as a string because "0001" isnt the same as "001".

Any suggestion on how i can do this?

Thanks
-David

Suggested Microsoft slogan -- "Windows: It Does That Sometimes"

    figured it out... I had missed the function:

    settype($post['set_md'], "string");

    =========

    thanks, I found it at about the same time you replied, thank you =)

      Write a Reply...