In my user registration page I insert the form data into the table with this code
$msquerys="
insert into userdata (account,password,rank,socno,email,block)
VALUES ('".$account."','".$pass."','".$rank."', '123123-1231231','".$email."','".$blockdata."')";
$msresultss=odbc_exec($conn2,$msquerys) or die('<div align="center">
Sadly I need to enter SOCNO as 123123-1231231 with that hyphen, however when it inserts this value -1108108 instead. It's like PHP is seeing it as a subtraction and inserting it like that.