add($contact); $contacts->write(); } elseif($name) { // Add $cid = $contacts->getNextCID(); $contact = new Contact($cid, $name, $address, $phone, $phone2, $email, $url); $contacts->add($contact); $contacts->write(); } if($cid) { $contact = $contacts->getContact($cid); $contact->show(); } else { $contacts->show(); // TODO: Editorbox for adding new contact } ?>