Checks if a given entry id exists
$id - an entry id to look for
Returns true if the entry exists, false if the entry does not exist.
// does entry 19 exist in form 6
$form_id = 6;
$dataHandler = new formulizeDataHandler($form_id);
if($dataHandler->entryExists(19)) {
echo "It exists!";
}