How would I not include text fields of a form left blank in a MySQL update query? I understand why it's replacing filled fields with empty strings, but I'm not sure of an efficient way to fix it. Is the best option really just a lot of if statements? Is there some kind of function I could use to disallow blank fields in my html form?

Here's what I have so far:

//Check if record exists
if(mysql_num_rows(mysql_query("SELECT Item_Id FROM Item_t WHERE Item_Id = '$itemid'")) == 0){
    die('The Item ID you entered was not found. Please go back and try again.');
    }

//Update record
$update = "UPDATE Item_t SET Item_Name='$itemname', Item_Price='$itemprice' WHERE Item_Id='$itemid'";
mysql_query($update);

So basically, in this example, if you leave the field that sets $itemname blank and just update $itemprice, the price will be updated, but the name will be set to an empty string.

link|improve this question
feedback

3 Answers

up vote 0 down vote accepted

You can check if your strings are empty in the SQL:

UPDATE Item_t
SET Item_Name = IF('$itemname' = '', Item_Name, '$itemname'),
    Item_Price = IF('$itemprice' = '', Item_Price, 'itemprice')
WHERE Item_Id='$itemid'
link|improve this answer
Makes perfect sense! I'm relatively new to SQL, so this is really helpful. Thanks! Quick question about what's actually going on - what's the middle expression in the IF statement mean? I understand that if the variable is an not an empty string it returns the variable, but what does returning the field name do? – timmo Dec 1 '11 at 0:14
@timmo: It sets the field to its original value (in other words, it doesn't change it). – Mark Byers Dec 1 '11 at 0:20
feedback

If you're building the update string in php, you might as well just build it differently if it's empty:

$update = "UPDATE Item_t SET ".($itemname ? "Item_Name='$itemname', " : "")."Item_Price='$itemprice' WHERE Item_Id='$itemid'";
link|improve this answer
feedback

try something like this.

$strSet = '';


//make sure to sanitize your inputs first, then do this....
if(Item_Name != ''){ $strSet .= 'Item_Name=\'$itemname\','};
if(Item_Price != ''){ $strSet .= 'Item_Price=\'$itemprice\','};

//removes trailing comma
$strSet = substr($strSet,0,-1);

//Update record
$update = "UPDATE Item_t SET " . $strSet . " WHERE Item_Id='$itemid'";
mysql_query($update);
link|improve this answer
in those if statements, you don't need the curly brackets. – Flukey Nov 30 '11 at 23:51
thanks, been looking at templates all day – user1070017 Nov 30 '11 at 23:54
feedback

Your Answer

 
or
required, but never shown

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