postArgs["firstName"])))<2 || strlen(trim(stripslashes($in->postArgs["firstName"])))>32) { $localError = true; $errors[] = "The required field First Name was not correctly filled."; } if (strlen(trim(stripslashes($in->postArgs["lastName"])))<2 || strlen(trim(stripslashes($in->postArgs["lastName"])))>32) { $localError = true; $errors[] = "The required field Last Name was not correctly filled."; } if (!ereg ("^[a-zA-Z0-9._-]+@([a-zA-Z0-9._-]+\.)+([a-zA-Z0-9_-]){2,5}$", $in->postArgs["email"])) { $localError = true; $errors[] = "The required field Email was not correctly filled."; } if ($localError==false) { return true; } else { return false; } }// end checkPostErrors // // saveExtension // function saveExtension($userId) { global $sql, $errors, $in, $conf; // check if he already downloaded the form for the current fiscal year $result = $sql->dbQuery(" SELECT * FROM extension WHERE userId = '".$userId."' AND fiscalYear = '".$conf->fiscalYear."' "); if (!$result) { $errors[] = "Database Error. Please try again."; return false; } if ($sql->numRows>0) { return true; } // doesn't have it // insert extension $result = $sql->dbQuery(" INSERT INTO extension (userId, extensionDate, fiscalYear) VALUES ('".$userId."', NOW(), '".$conf->fiscalYear."') "); if (!$result) { $errors[] = "Could not save your info in the database. Please try again"; return false; } } // end saveExtension function showHead() { ?> E-File Online: Extension Form 2688
E-File Online E-File Online, Inc. is an Authorized IRS E-file Provider Authorized IRS Efile Provider
E-File Online Tax Services Tax Software CPA Assistance Online Tax Help .gif" width=121 height=32 alt="Tax Guide " border="0"> Help

Print an Extension Form 2688

Form 2688 - Application for Additional Extension of Time to File U.S. Individual Income Tax Return

If you need additional time to file your tax return, we have provided a FREE Form 2688 for you to complete, print and mail to the IRS.

Form 2688 is an application for an extension of time to file your tax return.

  1. Enter your name and e-mail address and click on the button below to open the extension tax form.
  2. Enter your (and your spouse's, if applicable) name, address and social security number.
  3. Use the tab key to move from line to line. Enter the information requested on the tax form 2688.
  4. Print two copies of the extension form, one to mail to the IRS and one for your records.
  5. Mail the completed extension form to the IRS. See the included instructions for your mailing location.
Please enter your name and e-mail address so that we can remind you of your new filing deadline.

Customer Details
First Name * postArgs["firstName"])); } ?>">
Last Name * postArgs["lastName"])); } ?>">
Email Address * postArgs["email"]))); } ?>">
  Tax Information
E-File FAQ, EFile Supported States,
E-File & Get Quicker Refunds,
IRS Audit Protection, Meet an Advisor Online,
IRS Forms & Publications, State Tax Forms
  Tax Topic Help
Enter a Tax Topic, e.g. Business Expense

Tax Guide Search Help
CPA Advisors Program | Privacy Notice | Contact Us | Save-A-Tree | Search | Get Acrobat Reader |
postArgs["action"]) { case "getExtension": $contactInfo = array( "id" => "0", "firstName" => $in->postArgs["firstName"], "lastName" => $in->postArgs["lastName"], "email" => $in->postArgs["email"], "address" => "", "city" => "", "state" => "", "zip" => "", "phoneArea" => "", "phone1" => "", "phone2" => "", "speed" => "", "newsletter" => "" ); if (!checkPostErrors()) { showHead(); showForm(showErrors()); break; } // check if the user is registered $regInfo = getUserByEmail($in->postArgs["email"]); // if an error occured if ($regInfo==-1) { showHead(); showForm(showErrors()); break; } // user is not registered if ($regInfo==0) { // register him if (!$newUserArray = registerUser($contactInfo)) { showHead(); showForm(showErrors()); break; } // user sucessfuly registered $contactInfo["id"] = $newUserArray["id"]; } else { $contactInfo["id"] = $regInfo["id"]; } // now he is registered // save extenion if (!saveExtension($contactInfo["id"])) { showHead(); showForm(showErrors()); break; } // done redirect("https://www.e-file-online.com/help/fedext2688.html"); exit; break; default: showHead(); showForm(); break; } ?>