|
|
|
|
| |
| Learn A Test
Online Collection of up-to-date test preparation materials, including test formats and practice exams. First time users will be asked to register for a free sign-in account. Users can access study materials for the following exams: Civil Service (Postal Service, Federal Clerical Service);College Entrance (ACT, THEA); EMS/Paramedic; GED; Graduate School Admission (GMAT, MCAT, LSAT, GRE); Law Enforcement; Military (ASVAB); TOEFL; U.S. Citizenship...and many more. TEXES/EXCET: Texas State Teacher Certification Exams
Includes free study guides and test preparation manuals for exams required for teacher certification in Texas. All study manuals are provided in PDF format. UTB/TSC Testing Office Exam Study Guides
Includes some free study guides and informative Web sites for college entrance and placement exams required at UTB/TSC.
| | |
|
|
|
// for a working example uncomment the line bellow
echo "Last updated: ".lastUpdatedTrick(0, " M d Y")."";
// bellow are 4 examples of the output you can generate
// visit http://www.php.net/manual/en/function.date.php
// for getting an overview of all possible output variations
//"M-d-Y" // for e.g. May-05-2003
//"y-m-d" // for e.g. 03-05-05
//"Y-m-d" // for e.g. 2003-05-05
//"D, Y-m-d" // for e.g. Mon, 2003-05-05
//$daysFromToday are the days you want your last site update be from
//$outputFormat is the output format - make sure you use "YOUR_VALUE" and not just YOUR_VALUE
function lastUpdatedTrick($daysFromToday,$outputFormat) {
$days = date("d") - $daysFromToday;
return date ($outputFormat, mktime (0,0,0,date("m"),$days,date("Y")));
}
?>
|
|
|
|
| | |