Phoenix - Education is a branch of the largest private university in the U.S and offers the largest number of accredited online degree programs of any online institution. Founded in 1976, University of Phoenix was one of the first accredited universities to offer online college education with complete degree programs via the Internet. Most students can complete a Bachelor, Master, or Doctoral degree program in Education in 2 - 3 years.
University of Phoenix is accredited by The Higher Learning Commission (HLC) and is a member of the North Central Association of Colleges and Schools. University of Phoenix currently has more than 19,000 faculty members, including more than 9,600 in the Online Campus. Average faculty member holds a Master's or Doctoral degree and has 16 years of experience in his or her field.
Financial aid is available to those who qualify. In addition, University of Phoenix is approved by all branches of the Military for tuition assistance and is approved for Veterans training.
Master's Degree Programs*NOTE: MAEd programs not available to residents of AR, KY, or MN.
M.A.Ed./Curriculum and InstructionM.A.Ed./Curriculum and InstructionEarn a Master's Degree to prepare for teaching P-12 students and learn curricular planning and development.
M.A.Ed./Curriculum & Instruction - Computer EducationM.A.Ed./Curriculum & Instruction - Computer EducationEnhance and develop curricular planning with an integration of technology and education.
M.A.Ed./Administration & SupervisionM.A.Ed./Administration & SupervisionGain knowledge and expertise in school administration with a focus on education finance, school law, roles and responsibilities of the principal, community relations, and supervision of personnel.
M.A.Ed./Elementary Teacher EducationM.A.Ed./Elementary Teacher EducationNon-education Bachelor students transition to elementary and secondary teacher licensure by learning pedagogical skills and knowledge to become effective teachers while earning a Master's Degeree.Although this program is accepted by the Arizona Department of Education for teacher licensure, this may not be the case in all states, please check with your State Department of Education and your district to obtain licensure requirements.
M.A.Ed./Secondary Teacher EducationM.A.Ed./Secondary Teacher EducationDevelop teaching skills for elementary and secondary students by working toward licensure.Although this program is accepted by the Arizona Department of Education for teacher licensure, this may not be the case in all states, please check with your State Department of Education and your district to obtain licensure requirements.
M.A.Ed./Special EducationM.A.Ed./Special EducationDevelop educational strategies for cross categorical education through surveys of exceptional students, foundations and methodologies for mild disabilities, diagnosis and assessment of disabilities, management of student behavior, instruction in the content area's, and collaboration and resource management for the special educator.
M.A.Ed./Early Childhood EducationM.A.Ed./Early Childhood EducationDevelop teaching skills in the field of early childhood development with instructional strategies, teaching methodologies, assessment techniques, theories of early childhood growth and development, and the impact of family and cultural diversity on early childhood.
Doctoral Degree Programs
Doctor of Education in Educational LeadershipDoctor of Education in Educational LeadershipLearn leadership and management skills to improve the productivity of an organization and provide service to the community through applied research. Students may choose specialization in either Curriculum and Instruction or Educational Technology
Doctor of Ed./Curriculum & InstructionDoctor of Ed./Curriculum & InstructionDesign, manage, and lead processes related to curriculum, instruction, and assessment through applied scholarship, rigorous analysis, and comprehensive evaluation methodology.
©2007 University of Phoenix, Inc. All rights reserved.
function setIdProperty(id, property, value)
{
var styleObject = document.getElementById( id );
if (styleObject != null)
{
styleObject = styleObject.style;
styleObject[ property ] = value;
}
}
function expandText( divNum, expanding )
{
if (expanding)
{
setIdProperty("c" + divNum, "display", "none");
setIdProperty("e" + divNum, "display", "inline");
}
else
{
setIdProperty("e" + divNum, "display", "none");
setIdProperty("c" + divNum, "display", "inline");
}
}
function removeAllOptions(selectbox)
{
var i;
for(i=selectbox.options.length-1;i>=0;i--)
{
//selectbox.options.remove(i);
selectbox.remove(i);
}
}
function addOption(selectbox, value, text )
{
var optn = document.createElement("OPTION");
optn.text = text;
optn.value = value;
selectbox.options.add(optn);
}
function selectProgramsByLocation(location)
{
var sProgram = document.getElementById('sProgram');
removeAllOptions(document.getElementById('sProgram'));
addOption(sProgram, "", "-- Please select a program --");
}
function IsValidPhone(Obj, sLabel)
{
var sPhone = Obj.value;
var sPhoneTemp = sPhone;
sPhone = '';
var sNumbers = '1234567890';
for (var i=0;i -1)
sPhone += sPhoneTemp.charAt(i);
}
if (sPhone.charAt(0) == '1' sPhone.charAt(0) == 1)
sPhone = sPhone.substring(1,(sPhone.length));
if (sPhone.length != 10)
return sLabel + ' must be a 10 digit number\n';
else
Obj.value = sPhone;
var sAreaCode = sPhone.substring(0,3);
var sPrefix = sPhone.substring(3,6);
var sNumber = sPhone.substring(6,10);
ary7NotAllowed = new Array('1234567','4567890','0000000','1111111','2222222','3333333','4444444','5555555','6666666','7777777','8888888','9999999','3456789','4567890')
ary3NotAllowed = new Array('000','911','555','012','123');
for (var i=0;iPlease correct following entries:";
var validated = true;
var firstName = form.firstNameTxt.value;
var lastName = form.lastNameTxt.value;
var email = form.emailTxt.value;
var phone = form.phoneTxt.value;
var phone2 = form.phone2Txt.value;
var addr = form.addrTxt.value;
var city = form.cityTxt.value;
var state = form.stateTxt.value;
var zip = form.zipTxt.value;
var program = form.sProgram.value;
var emailFilter = /^([a-zA-Z0-9_\.\-])+\@(([a-zA-Z0-9\-])+\.)+([a-zA-Z0-9]{2,4})+$/;
var dateFilter = /^[0-9]{1,2}\/[0-9]{1,2}\/[0-9]{4}$/;
var phoneError = '';
var phone2Error = '';
var fExtra;
validated = IsValidField(validated, firstName, 'errFirstName', "Missing First Name", true);
validated = IsValidField(validated, lastName, 'errLastName', "Missing Last Name", true);
validated = IsValidField(validated, email, 'errEmail', "Invalid Email", emailFilter.test(email));
validated = IsValidField(validated, program, 'errProgram', "Missing Program", true);
validated = IsValidField(validated, addr, 'errAddr', "Missing Address", true);
validated = IsValidField(validated, city, 'errCity', "Missing City", true);
validated = IsValidField(validated, state, 'errState', "Missing State", true);
if (zip.length Invalid Zip", fExtra);
if (phone.length > 0)
phoneError = IsValidPhone(form.phoneTxt, 'Primary Phone');
if (phoneError.length > 0) fExtra = false; else fExtra = true;
validated = IsValidField(validated, phone, 'errPhone', "Invalid Primary Phone", fExtra);
if (phone2.length > 0)
phone2Error = IsValidPhone(form.phone2Txt, 'Alternate Phone');
if (phone2Error.length > 0) fExtra = false; else fExtra = true;
validated = IsValidField(validated, phone2, 'errPhone2', "Invalid Alternate Phone", fExtra);
var education = form.sEducation.value;
validated = IsValidField(validated, education, 'errEducation', "Missing Highest Education", true);
var check1 = form.check1.checked;
validated = IsBoxChecked(validated, check1, 'errCheck1', "Please check the box below", true);
var custom1 = form.custom1.value;
validated = IsValidField(validated, custom1, 'errCustom1', "Please select the option below", true);
var custom2 = form.custom2.value;
validated = IsValidField(validated, custom2, 'errCustom2', "Please select the option below", true);
if (validated)
{
document.getElementById('errMessage').innerHTML = "";
return true;
}
else
{
return false;
}
}
Please fill out the form below to get more information about financial aid and the programs offered by the school. An information package will be mailed out to you immediately.
First Name
Last Name
E-mail
Primary Phone
Alternate Phone
Address
City
State
-- Please select your state -- Alabama Alaska Arizona Arkansas Armed Forces Americas - except Canada California Colorado Connecticut Delaware District of Columbia Florida Georgia Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Military Overseas - Europe Military Overseas - Pacific Minnesota Mississippi Missouri Montana Nebraska Nevada New Hampshire New Jersey New Mexico New York North Carolina North Dakota Ohio Oklahoma Oregon Pennsylvania Rhode Island South Carolina South Dakota Tennessee Texas Utah Vermont Virginia Washington West Virginia Wisconsin Wyoming
Zip
Program of Interest -- Please select a program -- Associate of Arts in AccountingAssociate of Arts in BusinessAssociate of Arts in Criminal JusticeAssociate of Arts in General StudiesAssociate of Arts in Health Care AdministrationAssociate of Arts in Information TechnologyAssociate of Arts in Information Technology/NetworkingAssociate of Arts in Information Technology/Visual CommunicationAssociate of Arts in Paraprofessional EducationBachelor of Science in CommunicationsBachelor of Science in Organizational Security and ManagementBachelor of Science in PsychologyBachelor of Science in Business/AdministrationBachelor of Science in Business/AccountingBachelor of Science in Business/CommunicationBachelor of Science in Business/e-BusinessBachelor of Science in Business/FinanceBachelor of Science in Business/Global Business ManagementBachelor of Science in Business/Hospitality ManagementBachelor of Science in Business/Information SystemsBachelor of Science in Business/Integrated Supply Chain and Operations ManagementBachelor of Science in Business/ManagementBachelor of Science in Business/MarketingBachelor of Science in Business/Organizational InnovationBachelor of Science in Business/Public AdministrationBachelor of Science in Business/Retail ManagementBachelor of Science in Criminal Justice AdministrationBachelor of Science in Health AdministrationBachelor of Science in Health Administration/Health Information SystemsBachelor of Science in Health Administration/Long Term CareBachelor of Science in Human Services/ManagementBachelor of Science in Information TechnologyBachelor of Science in Information Technology/Information System SecurityBachelor of Science in Information Technology/Multimedia and Visual CommunicationsBachelor of Science in ManagementBachelor of Science in NursingDoctor of Business AdministrationDoctor of Health AdministrationDoctor of Management in Organizational LeadershipDoctor of Management in Organizational Leadership/Information Systems and TechnologyDoctor of Education in Educational LeadershipDoctor of Education in Educational Leadership/Curriculum and InstructionDoctor of Education in Educational Leadership/Educational TechnologyMaster of Arts in Education / Administration and SupervisionMaster of Arts in Education/Adult Education and TrainingMaster of Arts in Education/Curriculum and InstructionMaster of Arts in Education/Curriculum and Instruction-Computer EducationMaster of Arts in Education/Curriculum and Instruction-English as a Second LanguageMaster of Arts in Education/Curriculum and Instruction-English and Language Arts EducationMaster of Arts in Education/Curriculum and Instruction-Mathematics EducationMaster of Arts in Education/Early ChildhoodMaster of Arts in Education/Special Education/Cross CatagoricalMaster of Arts in Education/Elementary Teacher EducationMaster of Arts in Education/Secondary Teacher EducationMaster of Business AdministrationMaster of Business Administration/AccountingMaster of Business Administration/Global ManagementMaster of Business Administration/Health Care ManagementMaster of Business Administration/Human Resources ManagementMaster of Business Administration/MarketingMaster of Business Administration/Public AdministrationMaster of Business Administration/Technology ManagementMaster of Health AdministrationMaster of Health in Administration/EducationMaster of Health in Administration/GerontologyMaster of Health in Administration/InformaticsMaster of Information SystemsMaster of ManagementMaster of Management/Human ResourcesMaster of Management/Public AdministrationMaster of Science in Administration of Justice and SecurityMaster of Science in PsychologyMaster of Science in NursingMaster of Science in Nursing for Nurse PractitionersMaster of Science in Nursing - Nursing/Health Care EducationMaster of Science in Nursing/Master of Business Administration/Health Care ManagementMaster of Science in Nursing/Master of Health AdministrationMaster of Science in Nursing/Nurse PractitionerGlobal Management CertificateGraduate Accounting CertificateGraduate Human Resources ManagementGraduate Marketing CertificateTechnology Management CertificateVisual Communication Certificate
Highest EducationCompleted
GED High School 0-23 Credits 24-47 Credits 48+ Credits Associate Bachelors Masters Doctorate
Are you a U.S. citizen?
Yes No
*Did you earn college credits outside U.S.?
Yes No
*Are you associated with the U.S. Military?
Not affiliated with the Military AR - Active Duty(AD) AR - Selective Reserve(SR) AR - Spouse of AD or SR AR - Veteran AR - Civilian NV - Active Duty(AD) NV - Selective Reserve(SR) NV - Spouse of AD or SR NV - Veteran NV - Civilian AF - Active Duty(AD) AF - Selective Reserve(SR) AF - Spouse of AD or SR AF - Veteran AF - Civilian MC - Active Duty(AD) MC - Selective Reserve(SR) MC - Spouse of AD or SR MC - Veteran MC - Civilian CG - Active Duty(AD) CG - Selective Reserve(SR) CG - Spouse of AD or SR CG - Veteran CG - Civilian DoD - CIVILIAN
*I understand I will be contacted by a University of Phoenix representative.