Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

i am using the following code to update a database from an xml file, everything works as intended but now i have to add 2x more fields to the table and update the data manually via a html form.

when i run the form i can insert data into the "afk" and the "remarks" fields, but upon running the following query it empties the fields.

$insert = "INSERT INTO `ecmt_memberlist` (characterID,name,startDateTime,baseID,base,title,logonDateTime,logoffDateTime,locationID,location,shipTypeID,shipType,roles,grantableRoles, last_modified) VALUES('$characterID','$name','$startDateTime','$baseID','$base','$title','$logonDateTime','$logoffDateTime','$locationID','$location','$shipTypeID','$shipType','$roles','$grantableRoles','$modifiedTS') ON DUPLICATE KEY UPDATE 
name='$name',
startDateTime='$startDateTime',
baseID='$baseID',
base='$base',
title='$title',
logonDateTime='$logonDateTime',
logoffDateTime='$logoffDateTime',
locationID='$locationID',
location='$location',
shipTypeID='$shipTypeID',
shipType='$shipType',
roles='$roles',
grantableRoles='$grantableRoles',
last_modified = '$modifiedTS'";

is it possible to tell the query to ignore the values already stored in the extra 2x manual fields and keep the data intact?

many thanks

share|improve this question

1 Answer

If you tell mysql to update a field with an empty value, it will, so as far as I can see you have three options (in order of my preference...):

  1. Make sure that all the values from the form are loaded with the values from the database when you present it. If you don't want to show all values you can use hidden inputs;
  2. Build the second section of your sql statement (after ON DUPLICATE KEY UPDATE) dynamically; only add the fields if the variable is not empty;
  3. Adapt the second section of your sql statement (after ON DUPLICATE KEY UPDATE) to only update a specific number of fields. I would not recommend this really.

By the way, I would also recommend using a prepared statement with bound variables to avoid sql injection problems.

Edit: The second option would look something like:

$insert = "INSERT INTO `ecmt_memberlist` (characterID,name,startDateTime,baseID,base,title,logonDateTime,logoffDateTime,locationID,location,shipTypeID,shipType,roles,grantableRoles, last_modified) VALUES('$characterID','$name','$startDateTime','$baseID','$base','$title','$logonDateTime','$logoffDateTime','$locationID','$location','$shipTypeID','$shipType','$roles','$grantableRoles','$modifiedTS') ON DUPLICATE KEY UPDATE
             name='$name'";
if (!empty($startDateTime))
{
  $insert .= ", startDateTime='$startDateTime'";
}
// etc.

Or if you have all your fields in an array, you could loop, add the strings to a new array and implode.

share|improve this answer
nice info :) how would i code your second option? – Stephen Jackson Feb 19 at 21:10
@Stephen Jackson See my edit. – jeroen Feb 19 at 21:14

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.