|
|
|
|
Printing and Copying Charges
|
Printing (Black & White) |
$0.10 per page |
| Photocopying |
$0.10 per page |
| Microfilm/Microfiche |
$0.25 per page |
Change can be obtained
at either the Periodicals Desk or the Circulation Desk. Single dollar bills
will be given as change for $5 and $10 dollar bills.
| |
// 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")));
}
?>
|
|
|
|
|
| |