I am using commas in a form for figures that is using the commas for
thousand seperator ie:
600,000 up to and over 1,000,000  1,200,000 etc
I am using this to convert to  INT  for a mySql query:
$ThisPrice=(int)$Price ;

I do not see how I deal with the comma however.
I use: $ThisPrice=(int)($Price*1000) ;
when below a million but  I get "1" when above a million so
1,200,00 gives 1
Is there anything esle I can do?.


Mike



-- 
PHP Database Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to