Jump to content

[SOLVED] compare time


csckid

Recommended Posts

</script>


				<br /><br />

			Current Server Time: &nbsp&nbsp&nbsp <span id="showtime"></span>
			<br /><br />

			Current Server Date:&nbsp&nbsp&nbsp <span id="showdate"><?php echo date("j/m/y"); ?></span>


			<script type="text/javascript">

			var myTimer;
			var databasedate,serverdate,databasetime,servertime;
			checkeverysec();
			function checkeverysec(){


					myTimer=setInterval('check()',1000);

			}
			function check(){
				databasedate=document.getElementById('datadate').innerHTML;
				databasetime=document.getElementById('datatime').innerHTML;
				serverdate=document.getElementById('showdate').innerHTML;
				servertime=document.getElementById('showtime').innerHTML;
					//document.write("<br>"+databasedate+" "+serverdate+" "+databasetime+" "+servertime);
				if( (databasedate==serverdate) && (databasetime==servertime)  ){
					alert("they are equal");
					clearInterval(myTimer);
				//	location.replace("sampleexam.php");
				}

			}

			</script>




 

 

<span id="showtime"></span>

is implemented using ajax, so this shows time in each seconds.... Now i wanted to compare date and time by retrieving the values from

databasedate=document.getElementById('datadate').innerHTML;

databasetime=document.getElementById('datatime').innerHTML;

serverdate=document.getElementById('showdate').innerHTML;

servertime=document.getElementById('showtime').innerHTML;

 

comparing date was ok but i couldn't compare the time. document.getElementById('showtime').innerHTML; returns nothing

 

plz help

 

 

Link to comment
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.