contact_load
- Versions
- 6 – 7
contact_load($cid)
Load the data for a single contact category.
Code
modules/contact/contact.module, line 150
<?php
function contact_load($cid) {
$contact = db_fetch_array(db_query("SELECT * FROM {contact} WHERE cid = %d", $cid));
return empty($contact) ? FALSE : $contact;
}
?>Login or register to post comments 