Это должно быть примерно так
function example_nodeapi(&$node, $op, $teaser, $page) {
switch ($op) {
case 'validate':
// Indicate that it doesn't validate?
$sql = "SELECT nid FROM {node} WHERE title LIKE '%s'";
$result = db_result(db_query($sql, trim($node->title)));
if ($result) {
// Node with such title exist! Set error or warning!
form_set_error('title', 'Alert! Node with such title exist!').
}
break;
}
}