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 8928687
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T08:30:06+00:00 2026-06-15T08:30:06+00:00

Why is it, that I can’t UPDATE a field (type:longtext) with a string that

  • 0

Why is it, that I can’t UPDATE a field (type:longtext) with a string that contains a comma (,)…

$result=mysql_query("UPDATE table_name SET column1=$a WHERE column2=$b AND column3='price'");

Works well with

$a="10"; or $a="10.99";
$b="15";

doesn’t work with

$a="10,99"; 
$b="15";

neither works with:

$a="10,99";
$a=mysql_real_escape_string($a);

What am I doing wrong here?

  • 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-15T08:30:08+00:00Added an answer on June 15, 2026 at 8:30 am

    When your query string is being evaluated with the values that contain commas, this is the query:
    "UPDATE table_name SET column1=10,19 WHERE column2=15 AND column3='price'";
    The comma is creating an issue because the value 10,19 is not a string. You need to put quotes around your variables. If you use double-quotes, you will need to escape the quotes. Single quotes work as well; either of the following should do the trick:

    $result=mysql_query("UPDATE table_name SET column1=\"$a\" WHERE column2=\"$b\" AND column3='price'");
    

    or

    $result=mysql_query("UPDATE table_name SET column1='$a' WHERE column2='$b' AND column3='price'");
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

how can i make a collection that can store a data type (say string,
How can I design an application that contains a card that can be flipped
Are there any APIs that can extract moods from a string (for use in
How can someone limit the files that can be selected with the input type=file
I have a JScrollPane that can set its viewportView to a range of different
Anyone that can help me out will be very much appreciated. I seem to
How can I write a wrapper that can wrap any function and can be
What can be done in Cpython that can not be done in IronPython?
How can I develop applications in C# that can be further extended using DLL
where can i find this class StringEscapeUtils that can automatically escape the characters instead

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.