function openid_ax_persona_form() {
$identifiers =
db_query("SELECT * FROM {openid_ax_attributes}");
$ax_values =
db_query("SELECT * FROM {openid_ax_values} WHERE uid=%d",
$user->
uid );
$persona_value[$row['ax_id']] = $row['ax_values'];
}
$form[$row['ax_id']] =
array(
'#type' => 'textfield',
'#title' =>
t($row['identifier']),
'#value' => $persona_value[$row['ax_id']],
'#size' => 25,
'#maxlength' => 100
);
}
'#type' => 'submit',
);
return $form;
}