rsvp_load

Definition

rsvp_load($rid)
rsvp/rsvp.module, line 232

Description

  • Retrieves an rsvp from the database.
*
  • *

Parameters

$rid The rid of the rsvp instance.

  • @return dbresultset of the requested rsvp.

Code

<?php
function rsvp_load($rid) {
  return db_fetch_object(db_query('SELECT * FROM {rsvp} WHERE rid = %d', $rid));
}
?>