ok i got anothe problem,
I need to store large numbers in a string without going negative
sample
$population=5000000000; // 500,000,000
$planets=68000000; // 680,000
$credits=intval(($population*14)+($planets*95));
echo "$credits";// result= -849411328
I know its caused because of intval(), i was wondering is there anything like bigintval() or anything simular?