Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8586509
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 11, 20262026-06-11T22:19:35+00:00 2026-06-11T22:19:35+00:00

I would like to insert this type of number format in to my database.

  • 0
  1. I would like to insert this type of number format in to my database.

    $value = "20.000,00";
    

    I tried with FLOAT and DOUBLE, but they can’t handle this. Only option left that I know which works is VARCHAR?

  2. Although if I do this when I am working with the numbers later and tries to subtract number from each other:

    $value2 = "15.933,50";
    $calc = $value - $value2;
    

    $calc is now 4.067, it should be 4.066,50 – how can this be correct?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-11T22:19:36+00:00Added an answer on June 11, 2026 at 10:19 pm

    For financial numbers, you should use the DECIMAL type. It has a fixed precision and isn’t subject to the rounding problems of floating point numbers.

    Never store a money number in a VARCHAR or a FLOAT.

    If you want to introduce in the database your $value, you must parse it so that you can introduce the number :

    $fmt = new NumberFormatter( 'da_DK', NumberFormatter::DECIMAL );
    $num = $fmt->parse($value, NumberFormatter::TYPE_INT32)
    

    To display a number you got from your DB as “20.000,00”, you may use

    $display_value = $fmt->format($num);
    

    EDIT :

    If you can’t use a NumberFormatter, you may use this to build a string that you can introduce in a DECIMAL field (in a float one too but don’t) :

    $v = str_replace(',', '.', str_replace('.', '', $value));
    

    This changes "20.000,00" to "20000.00" which the database can understand.
    But it’s always dangerous to ask a database to parse the strings as numbers (you may change the locale later). I’d recommend you to parse the number in PHP and to explicitly specify the locale.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When performing many inserts into a database I would usually have code like this:
I would like to insert the current Subversion revision number (as reported by svnversion
This may seem like a weird question but thought I would ask here before
I would like to insert dates in an emacs buffer like I do in
I would like to insert notes on the fixes to be done in specific
I would like to insert the output of multiple calculations into my text document:
I would like to insert a new DataGridViewRow into my DataGridView at a specific
In a part of my website I would like to insert some images and
I have a little problem where I would like to insert a svn diff
I have a JPA project and I would like to insert some initial data

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.