well im submitting the number 7327060765 but when it passes through php and is finally placed in the database it is: 2147483647. and that is the same number in the database for any combination of numbers i use>_< can someone explain y its doing this?
my code is:
PHP Code:
if($cellnum != $bbuserinfo['cellnum'])
{
if(strlen($cellnum) <> 10 OR strlen($cellnumconfirm) <>10)
{
eval(print_standard_error('error_badcellnum'));
}
if($cellnum != $cellnumconfirm)
{
eval(print_standard_error('error_cellnummismatch'));
}
if($usedcellnum = $DB_site->query_first("SELECT cellnum FROM ".TABLE_PREFIX."user WHERE userid!=".intval($bbuserinfo['userid'])." AND cellnum=".intval($cellnum).""))
{
eval(print_standard_error('error_cellnumtaken'));
}
$newcellnum = 'cellnum = "' . intval($cellnum) . '" ,' ;
}
else
{
$newcellnum = '';
}
i have it set it globalize() that $cellnum and $cellnumconfirm are intergers