diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..268bd31 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2021 Mirnes Glamočić + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/README.md b/README.md new file mode 100644 index 0000000..bd75a5e --- /dev/null +++ b/README.md @@ -0,0 +1,13 @@ +# PHP function for copyright years +This repository contain a custom **PHP function** to display a *copyright years*. When a website is new the copyright notice will display the copyright symbol and only the current year, but each time the january wills allong it will display a range of years indicating both the start year and the current year. + +With PHP function for date the start year will display 4 digit number and the current year will display only last twoo digit number of year. + +--- +![PREVIEW](copyright_1Year.png "Footer with PHP function for display only the current year") + +![PREVIEW](copyright_2Years.png "Footer with PHP function for display a range of years") + +--- +Download the files as a zip using the green button, or clone the repository to your machine using Git. + diff --git a/copyright_1Year.png b/copyright_1Year.png new file mode 100644 index 0000000..8a6bd7e Binary files /dev/null and b/copyright_1Year.png differ diff --git a/copyright_2Years.png b/copyright_2Years.png new file mode 100644 index 0000000..619ea7e Binary files /dev/null and b/copyright_2Years.png differ diff --git a/footer.php b/footer.php new file mode 100644 index 0000000..060147f --- /dev/null +++ b/footer.php @@ -0,0 +1,14 @@ +
"; + } else { + return "© Copyright $startYear " . "| Developed by Mirnes Glamočić
"; + } +} +echo copyright(2021); +?> + \ No newline at end of file