Jump to content

mysql_query in while loop


perky416

Recommended Posts

Hi everyone,

Im using code similar to that below to update or delete database entries based on checked checkboxes when a form is submitted.

Would I be right in saying that, say if the user ticks 10 check-boxes and then clicks submit, 10 queries are executed?

 

If so is there a way to make it so that only 1 query is executed but updates or deletes multiple entries?

 

$i = 0;
while ($row = mysql_fetch_assoc($query)) {

// if checkbox is checked, validate data			
if ($_POST['check'][$i]){			

// validation code here

}

// if no errors are present update or delete each checked entry
if (empty($error)){
if ($_POST['action'] == "Save Changes"){
mysql_query("UPDATE example SET example='$example' WHERE value='$checked'");
}

if ($_POST['action'] == "Delete"){
mysql_query("DELETE FROM example WHERE value='$checked'");
}
}			
$i++;

 

Thanks

Link to comment
Share on other sites

Hi gristoi,

 

Iv had a read of the IN function and used the example you have given me. I have modified it a bit to try and integrate it with my code however I cant get it to work. My latest code is:

 

$i = 0;
while($row = mysql_fetch_assoc($query)){
	$value1 = $_POST['value1'][$i];
	$exampleValues = $_POST['checkbox_value'][$i];
	$i++; 
}

if (empty($error)){
	mysql_query("UPDATE table1 SET field1='$value1' WHERE field2 IN ($exampleValues)");
}

 

Can you see where im going wrong?

 

Thanks mate.

Link to comment
Share on other sites

Remove the while loop.

 

Then replace this:

 

        if (empty($error)){
	mysql_query("UPDATE table1 SET field1='$value1' WHERE field2 IN ('" . implode("','", $_POST['checkbox_value']) . "')");
}

 

For security reasons, you may want to run mysql_real_escape_string on the $_POST['checkbox_value'] through an array_map to help prevent SQL injection, but that should get you to where you want to be.

 

IE:

 

       $_POST['checkbox_values'] = array_map('mysql_real_escape_string', $_POST['checkbox_values']);
        if (empty($error)){
	mysql_query("UPDATE table1 SET field1='$value1' WHERE field2 IN ('" . implode("','", $_POST['checkbox_value']) . "')");
}

 

Pending any errors I may have.

Link to comment
Share on other sites

Hi mate,

 

Thanks for the sql injection tip, iv been meaning to do a bit of research in how to make my site more secure :). Iv took your example and now I have the code below, however it is writing a blank value to the database.

 

$value1 = $_POST['value1'][$i];

$_POST['checkbox_values'] = array_map('mysql_real_escape_string', $_POST['checkbox_values']);
if (empty($error)){
	mysql_query("UPDATE table1 SET field1='$value1' WHERE field2 IN ('" . implode("','", $_POST['checkbox_value']) . "')");
}

 

Do you know why this could be?

 

Also, wouldnt I still have to have the while loop around the "$value1 = $_POST['value1'][$i];"? I tried this also and this was writing a 0 to the database.

 

Thanks mate I appreciate your help :)

Link to comment
Share on other sites

Iv just read my initial post, I think it may be a little confusing. I wrote the initial example code out quickly and bodged it up. Im trying to achieve the following:

 

if ($_POST['action'] == "Save Changes"){
mysql_query("UPDATE table1 SET field1='$value1' WHERE field2='$checkbox_value'");
}

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.