CGTroll Posted August 16, 2013 Share Posted August 16, 2013 What is the best way to clear a value in a table? Scenario: If user choose to delete article image, the filename in the table should be cleared. I have used $old_image = ""; to clear the name and then update table, but that doesn't seem to clear the value completely, as when I do a check afterwards if filename was deleted by using statement if($filename), it always return True, as in, there is a value present for $filename even when name has been cleared. Have a got this correct or is there something else I am missing, In advance, thanks! Link to comment https://forums.phpfreaks.com/topic/281236-how-to-clear-a-variable-value-correctly/ Share on other sites More sharing options...
Ron916 Posted August 16, 2013 Share Posted August 16, 2013 unset($old_image); Link to comment https://forums.phpfreaks.com/topic/281236-how-to-clear-a-variable-value-correctly/#findComment-1445313 Share on other sites More sharing options...
CGTroll Posted August 16, 2013 Author Share Posted August 16, 2013 Thanks! Link to comment https://forums.phpfreaks.com/topic/281236-how-to-clear-a-variable-value-correctly/#findComment-1445315 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.