Jump to content

[SOLVED] Time Difference


Kodak07

Recommended Posts

put..

 

<?php
session_start();

$time = microtime();

$_SESSION['time'] = $time;

?>

 

This will set $_SESSION['time'] to $time.

 

on the next page you just put..

 

<?php
session_start();

echo $_SESSION['time'];

?>

 

On any page that you want to use sessions, you must have session_start(); at the top!

Archived

This topic is now archived and is closed to further replies.

×
×
  • 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.