Php – Is there a more efficient way of updating values in the Database
What I'm doing is checking every Input tag if its empty or not, if not empty call the function, Im just wondering if there is a better way to do this $firstname = $this->request->getPost('firstname'); $lastname = $this->request->getPost('lastname'); $middlename = $this->request->getPost('middlename');…