small problem

A

Anonymous

Guest
hallo everybody !

I have text box. When I enter a number string (ex:123456789123456789) , mysql will review "123456767+4e".
However, I just used "(string) (123456789123456789)".

please explain me

thks

best regrads
 
try this one
Code:
$a = "123456789123456789";

I mean put quotes around number-string.
 
Shouldn't really make any difference... but you should try...
I still dont get why in some times it changes... i think i should make a call to MySQL soon :)
 
okie

if (is_numeric($value)) $value= $valule." ";

thks

best regards
 
Back
Top