SQL Update Statement not working but the information from row=fetch_assoc() are printed on the screenHow to concatenate text from multiple rows into a single text string in SQL server?SQL update from one Table to another based on a ID matchSQLite - UPSERT *not* INSERT or REPLACEHow can I do an UPDATE statement with JOIN in SQL?How do I UPDATE from a SELECT in SQL Server?How to do an INNER JOIN on multiple columnsHow to use count and group by at the same select statementWhat are the options for storing hierarchical data in a relational database?SQL Update row based on column indexhow to get the value from database to textbox in php

What are the differences between the usage of 'it' and 'they'?

Is it important to consider tone, melody, and musical form while writing a song?

How do I create uniquely male characters?

What's the point of deactivating Num Lock on login screens?

Why did Neo believe he could trust the machine when he asked for peace?

Do VLANs within a subnet need to have their own subnet for router on a stick?

Collect Fourier series terms

Have astronauts in space suits ever taken selfies? If so, how?

How is it possible to have an ability score that is less than 3?

What do the dots in this tr command do: tr .............A-Z A-ZA-Z <<< "JVPQBOV" (with 13 dots)

The use of multiple foreign keys on same column in SQL Server

Are the number of citations and number of published articles the most important criteria for a tenure promotion?

Why does Kotter return in Welcome Back Kotter?

How did the USSR manage to innovate in an environment characterized by government censorship and high bureaucracy?

Test if tikzmark exists on same page

Can I make popcorn with any corn?

Minkowski space

Which models of the Boeing 737 are still in production?

What defenses are there against being summoned by the Gate spell?

Why do falling prices hurt debtors?

Why not use SQL instead of GraphQL?

Risk of getting Chronic Wasting Disease (CWD) in the United States?

What's the output of a record cartridge playing an out-of-speed record

"You are your self first supporter", a more proper way to say it



SQL Update Statement not working but the information from row=fetch_assoc() are printed on the screen


How to concatenate text from multiple rows into a single text string in SQL server?SQL update from one Table to another based on a ID matchSQLite - UPSERT *not* INSERT or REPLACEHow can I do an UPDATE statement with JOIN in SQL?How do I UPDATE from a SELECT in SQL Server?How to do an INNER JOIN on multiple columnsHow to use count and group by at the same select statementWhat are the options for storing hierarchical data in a relational database?SQL Update row based on column indexhow to get the value from database to textbox in php






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I am looping through the rows of the database with fetch_assoc() and I am selecting two columns of it. I check the values of these two columns of each row. If they are between 2 values then I updated a third row as 1(TRUE) if a statement is true. I am creating two connections because there are two statements, the one that selects the information and the other that updates the column that I want to be updated. When I try to print the information in the screen it seems that the SELECT statement works but when I try to UPDATE the column that I want the UPDATE statement does not update the database. Here is my code:



$conn= mysqli_connect("localhost","root","root"); 

$variablech = 1 ;

$query = "SELECT Client, Info FROM DataTable";


if ($result = mysqli_query($conn, $query))

while($row=mysqli_fetch_row($result))

if((($row['Client']>=54.055) && ($row['Client']<=54.117) ) && (( $row['Info']>=-4.827) && ( $row['Info']<=-4.317)))

$variablech = 0;

$sql= " UPDATE DataTable SET InfoData='$variablech' WHERE Client='".$row['Client']."' AND Info='".$row['Info']."'";
$conn->query($sql);
echo "yes";


else

$variablech = 1;
$sql= " UPDATE DataTable SET InfoData='$variablech' WHERE Client='".$row['Client']."' AND Info'".$row['Info']."'";
$conn->query($sql);

echo "no";














share|improve this question




























    0















    I am looping through the rows of the database with fetch_assoc() and I am selecting two columns of it. I check the values of these two columns of each row. If they are between 2 values then I updated a third row as 1(TRUE) if a statement is true. I am creating two connections because there are two statements, the one that selects the information and the other that updates the column that I want to be updated. When I try to print the information in the screen it seems that the SELECT statement works but when I try to UPDATE the column that I want the UPDATE statement does not update the database. Here is my code:



    $conn= mysqli_connect("localhost","root","root"); 

    $variablech = 1 ;

    $query = "SELECT Client, Info FROM DataTable";


    if ($result = mysqli_query($conn, $query))

    while($row=mysqli_fetch_row($result))

    if((($row['Client']>=54.055) && ($row['Client']<=54.117) ) && (( $row['Info']>=-4.827) && ( $row['Info']<=-4.317)))

    $variablech = 0;

    $sql= " UPDATE DataTable SET InfoData='$variablech' WHERE Client='".$row['Client']."' AND Info='".$row['Info']."'";
    $conn->query($sql);
    echo "yes";


    else

    $variablech = 1;
    $sql= " UPDATE DataTable SET InfoData='$variablech' WHERE Client='".$row['Client']."' AND Info'".$row['Info']."'";
    $conn->query($sql);

    echo "no";














    share|improve this question
























      0












      0








      0








      I am looping through the rows of the database with fetch_assoc() and I am selecting two columns of it. I check the values of these two columns of each row. If they are between 2 values then I updated a third row as 1(TRUE) if a statement is true. I am creating two connections because there are two statements, the one that selects the information and the other that updates the column that I want to be updated. When I try to print the information in the screen it seems that the SELECT statement works but when I try to UPDATE the column that I want the UPDATE statement does not update the database. Here is my code:



      $conn= mysqli_connect("localhost","root","root"); 

      $variablech = 1 ;

      $query = "SELECT Client, Info FROM DataTable";


      if ($result = mysqli_query($conn, $query))

      while($row=mysqli_fetch_row($result))

      if((($row['Client']>=54.055) && ($row['Client']<=54.117) ) && (( $row['Info']>=-4.827) && ( $row['Info']<=-4.317)))

      $variablech = 0;

      $sql= " UPDATE DataTable SET InfoData='$variablech' WHERE Client='".$row['Client']."' AND Info='".$row['Info']."'";
      $conn->query($sql);
      echo "yes";


      else

      $variablech = 1;
      $sql= " UPDATE DataTable SET InfoData='$variablech' WHERE Client='".$row['Client']."' AND Info'".$row['Info']."'";
      $conn->query($sql);

      echo "no";














      share|improve this question














      I am looping through the rows of the database with fetch_assoc() and I am selecting two columns of it. I check the values of these two columns of each row. If they are between 2 values then I updated a third row as 1(TRUE) if a statement is true. I am creating two connections because there are two statements, the one that selects the information and the other that updates the column that I want to be updated. When I try to print the information in the screen it seems that the SELECT statement works but when I try to UPDATE the column that I want the UPDATE statement does not update the database. Here is my code:



      $conn= mysqli_connect("localhost","root","root"); 

      $variablech = 1 ;

      $query = "SELECT Client, Info FROM DataTable";


      if ($result = mysqli_query($conn, $query))

      while($row=mysqli_fetch_row($result))

      if((($row['Client']>=54.055) && ($row['Client']<=54.117) ) && (( $row['Info']>=-4.827) && ( $row['Info']<=-4.317)))

      $variablech = 0;

      $sql= " UPDATE DataTable SET InfoData='$variablech' WHERE Client='".$row['Client']."' AND Info='".$row['Info']."'";
      $conn->query($sql);
      echo "yes";


      else

      $variablech = 1;
      $sql= " UPDATE DataTable SET InfoData='$variablech' WHERE Client='".$row['Client']."' AND Info'".$row['Info']."'";
      $conn->query($sql);

      echo "no";











      php sql database






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 21 at 23:48









      Evita Evita

      31




      31






















          1 Answer
          1






          active

          oldest

          votes


















          0














          This should do the trick:



          ...
          $sql= "UPDATE DataTable SET InfoData='".$variablech."' WHERE Client='".$row['Client']."' AND Info='".$row['Info']."'";
          mysqli_query($conn, $sql)
          ...


          Suggestion:



          Not sure, if you have an auto_increment field in your table. If you do, then select it in select query and then use the same to update the data in update query. That will speed up the database stuff and so is your project.






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function ()
            StackExchange.using("externalEditor", function ()
            StackExchange.using("snippets", function ()
            StackExchange.snippets.init();
            );
            );
            , "code-snippets");

            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "1"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55290870%2fsql-update-statement-not-working-but-the-information-from-row-fetch-assoc-are%23new-answer', 'question_page');

            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            0














            This should do the trick:



            ...
            $sql= "UPDATE DataTable SET InfoData='".$variablech."' WHERE Client='".$row['Client']."' AND Info='".$row['Info']."'";
            mysqli_query($conn, $sql)
            ...


            Suggestion:



            Not sure, if you have an auto_increment field in your table. If you do, then select it in select query and then use the same to update the data in update query. That will speed up the database stuff and so is your project.






            share|improve this answer



























              0














              This should do the trick:



              ...
              $sql= "UPDATE DataTable SET InfoData='".$variablech."' WHERE Client='".$row['Client']."' AND Info='".$row['Info']."'";
              mysqli_query($conn, $sql)
              ...


              Suggestion:



              Not sure, if you have an auto_increment field in your table. If you do, then select it in select query and then use the same to update the data in update query. That will speed up the database stuff and so is your project.






              share|improve this answer

























                0












                0








                0







                This should do the trick:



                ...
                $sql= "UPDATE DataTable SET InfoData='".$variablech."' WHERE Client='".$row['Client']."' AND Info='".$row['Info']."'";
                mysqli_query($conn, $sql)
                ...


                Suggestion:



                Not sure, if you have an auto_increment field in your table. If you do, then select it in select query and then use the same to update the data in update query. That will speed up the database stuff and so is your project.






                share|improve this answer













                This should do the trick:



                ...
                $sql= "UPDATE DataTable SET InfoData='".$variablech."' WHERE Client='".$row['Client']."' AND Info='".$row['Info']."'";
                mysqli_query($conn, $sql)
                ...


                Suggestion:



                Not sure, if you have an auto_increment field in your table. If you do, then select it in select query and then use the same to update the data in update query. That will speed up the database stuff and so is your project.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Mar 22 at 1:13









                Satish SainiSatish Saini

                1,77121529




                1,77121529





























                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function ()
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55290870%2fsql-update-statement-not-working-but-the-information-from-row-fetch-assoc-are%23new-answer', 'question_page');

                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                    Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                    Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript