Simple Running Time using PHP and Javascript
Submitted by nurhodelta_17 on Tuesday, August 22, 2017 - 11:27.
Language
This tutorial will show you how to create a running time using PHP and Javascript. This tutorial does not include a good design but will give you knowledge on how to create a simple running time.
Creating our Time Script
This script creates our running time. In this script, we have also included a small PHP code to show our running time. So, for us to show the time in our desired page, we just need to include the script. To create the script, open your HTML code editor and paste the code below after the tag. We name this script as "time.php".- <span id=tick2>
- <script>
- function show2(){
- if (!document.all&&!document.getElementById)
- return
- thelement=document.getElementById? document.getElementById("tick2"): document.all.tick2
- var Digital=new Date()
- var hours=Digital.getHours()
- var minutes=Digital.getMinutes()
- var seconds=Digital.getSeconds()
- var dn="PM"
- if (hours<12)
- dn="AM"
- if (hours>12)
- hours=hours-12
- if (hours==0)
- hours=12
- if (minutes<=9)
- minutes="0"+minutes
- if (seconds<=9)
- seconds="0"+seconds
- var ctime=hours+":"+minutes+":"+seconds+" "+dn
- thelement.innerHTML=ctime
- setTimeout("show2()",1000)
- }
- window.onload=show2
- //-->
- </script>
- </span>
- <?php
- $date = new DateTime();
- echo $date->format('l -- F j, Y');
- ?>
Creating our Show Page
Lastly, we create a page where we want to show our time. To create the page, open your HTML code editor and paste the code below after the tag. We name this page as "index.php".- <!DOCTYPE HTML>
- <html>
- <head>
- <title>Simple Running Time using PHP</title>
- </head>
- <body>
- <?php include ('time.php'); ?>
- </body>
- </html>
Note: Due to the size or complexity of this submission, the author has submitted it as a .zip file to shorten your download time. After downloading it, you will need a program like Winzip to decompress it.
Virus note: All files are scanned once-a-day by SourceCodester.com for viruses, but new viruses come out every day, so no prevention program can catch 100% of them.
FOR YOUR OWN SAFETY, PLEASE:
1. Re-scan downloaded files using your personal virus checker before using it.
2. NEVER, EVER run compiled files (.exe's, .ocx's, .dll's etc.)--only run source code.
Add new comment
- 293 views