updateUser
(function)
Purpose:
Updates a single piece of user data
Example:
updateUser('email',1,'bob@aol.com')
Data Type(s):
updateUser($column, $id, $value)
Location:
users/helpers/users.php
Details:
Updates a single column of a single user on the users table
Returns the full database response including errors
<?php $users = updateUser('email',1,'bob@aol.com');?>