Name
mgd_update_member -- Update a member record
Synopsis
bool mgd_update_member
(int id, string extra);
Description
Minimum version: Midgard 1.0 (Land Rover)
Updates the member record with id id
with the provided parameters.
Returns true if succesfull.
Returns false on failure.
Example
<?php
$id = 13;
$extra = "Updated freeform extra info";
mgd_update_member( $id, $extra );
?>