Jump to content

user server/ip $time?


paulmo

Recommended Posts

Do you know the user's time?

 

If not you may have to use Javascript to get the user's time and display that, cause PHP cannot tell you what the user's time is unless you have them fill out their timezone and then change the time accordingly...

Link to comment
Share on other sites

<script type="text/javascript">
function GetClientUTC()
{
var now = new Date();
var offset = now.getTimezoneOffset();
return offset;
}
</script>

 

Unsure if that works, but yea, you could use that and post the offset to your script on user login and use that via session to change the offset.

Link to comment
Share on other sites

how to echo my $time keywords (morning, afternoon evening) with your js, premiso? there's no user log in on my page/site.

 

and this from mradam's link also seems relevant (but again, don't know how to integrate):

<script type="text/javascript">
var d = new Date();
document.write (d.toLocaleTimeString());
</script>

 

thanks for help.

Link to comment
Share on other sites

  • 2 weeks later...

getting a parse error on line 61 "<script type=" which looks fine to me. trying to get user local time to work right with the morning afternoon evening statement. help please? and thanks:

<script type="text/javascript">
function.GetClientUTC()
{
var now = new Date();
var offset = now.getTimezoneOffset();
return offset;
}
</script>

$time = (GetClientUTC() < 12) ? 'morning' : (intval(date('G')) < 17) ? 'afternoon' : 'evening';

Link to comment
Share on other sites

Well yea it will not work. You are mixing JS and PHP. They are two different languages JS has to be done on the client side. So in order for this to work you will have to setup a page that loads before anything else is loaded and set the locale probably as a cookie using javascript. Then take it to the original page and access the locale from the cookie.

 

 

Link to comment
Share on other sites

Using cookies works well

<script type="text/javascript">
var myDate = new Date();
var myTime = myDate.toLocaleTimeString();
myDate.setDate(myDate.getDate()+1);
setCookie('UserTime',myTime);

function setCookie(c_name,value,expiredays)
{
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+expiredays);
	document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}
</script>

<?php
list($hours, $minutes, $seconds) = explode(":",$_COOKIE['UserTime']);
echo "Its $hours:$minutes:$seconds";
$time = ($hours < 12)?'morning'($hours < 17)?'afternoon':'evening');
echo $time;
?>

Link to comment
Share on other sites

alas, the $time statements are not matching the clock time. for example, just now i'm getting

The time is 7:28:30 PM Good morning 

 

here's the code. thanks for help!

 

<script type="text/javascript">
var myDate = new Date();
var myTime = myDate.toLocaleTimeString();
myDate.setDate(myDate.getDate()+1);
setCookie('UserTime',myTime);

function setCookie(c_name,value,expiredays)
{
	var exdate=new Date();
	exdate.setDate(exdate.getDate()+expiredays);
	document.cookie=c_name+ "=" +escape(value)+((expiredays==null) ? "" : ";expires="+exdate.toGMTString());
}
</script>

<script type="text/javascript" src="jquery-1.2.6.min.js"></script>     
<script type="text/javascript" src="jquery.corners.min.js"></script>
          
<div id="col1">

<div style="background-color:#FFFFFF; padding:10px" class="rounded {10px}">
<?php
list($hours, $minutes, $seconds) = explode(":",$_COOKIE['UserTime']);
echo "The time is $hours:$minutes:$seconds";
$time = ($hours < 12)?'morning'($hours < 17)?'afternoon':'evening');
echo " Good $time";
?>

Link to comment
Share on other sites

actually the time of day [morning afternoon evening] is still not matching up with time, which is accurate. i've tried both $time statements:

<?php
list($hours, $minutes, $seconds) = explode(":",$_COOKIE['UserTime']);
echo "The time is $hours:$minutes";  [correct]

//$time = ($hours < 12)?'morning'($hours < 17)?'afternoon':'evening');
$time = intval(date('G')) < 12 ? 'morning' : intval(date('G')) < 17 ? 'afternoon' : 'evening'; [not]
echo " on this ".date('l') ; [correct]
echo " {$time}.";[not]

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.