rledieu Posted May 26, 2003 Share Posted May 26, 2003 Hi, I have a need to clear down a field in a table prior to re-filling it with new values. If in the PHP page I clear it down and then immediatley run the query to fill in the values I find that the first query hasn\'t finished in time and therefore wipes out new values. The cose is: $query = "update LOW_PRIORITY " . $selDim . " set limitint = null;"; $result = mysql_query($query) or die($selDim . " Update (set to NULL) failed"); $i=0; while ($_GET["selChosen"][$i] != "") { $query= "update " . $selDim . " set limitint = " . $i . " where dimvalue = \'" . $_GET["selChosen"][$i] . "\'"; $result = mysql_query($query) or die($selDim . " Update (set limitint) failed"); $i++; } $selDim is the table name. The Values are based on a multiple selection box and I use the value that I place in the field for ordering purposes. Can anyone tell me what I amdoing wrong - or is there a way of putting an appropriate if-then clause in the MySQL? Thanks Quote Link to comment https://forums.phpfreaks.com/topic/512-mysql-walking-over-itself/ Share on other sites More sharing options...
yuvaraj Posted May 28, 2003 Share Posted May 28, 2003 If you think the second query executes before the first query finishes, then its better to have an if condition into which you can have the second query. Like $a = 0; $query = \"do something\"; if ($result = mysql_query($query, $connection)) { $a = 1; } if ($a = \'1\'\') { ****** Your Second Query Goes Here *********** } Hope this helps :wink: Quote Link to comment https://forums.phpfreaks.com/topic/512-mysql-walking-over-itself/#findComment-1752 Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.