Minimum version: Midgard 1.0
Gets information about the member record with id id.
Returns an object describing the record if succesfull. Returns FALSE on failure.
<?php
$id = 123;
$mem = mgd_get_member( $id );
echo $mem->id . " " . $mem->gid . " " . $mem->uid . " "
. $mem->extra . "<br>\n";
?>
|