Jump to content

[SOLVED] can someone explain this code? please


sayedsohail

Recommended Posts

Hi,

 

Can someone explain this code for me please?

 

<?php
define('POST_DELAY', 30);

if(time() - $_SESSION['last_access'] > POST_DELAY)
{
  // run update queries
}
else
{
  echo "You must wait " . POST_DELAY . " seconds before submitting another post.";
}

$_SESSION['last_access'] = time();
?>

define assigned a value to a constant, in this code, it will assign 30 to constant POST_DELAY

$_SESSION['last_access'] hold the time in which user last updated the query or attempted to update query

 

How do i assign the value to $_SESSION['last_access']; i am not sure if the last_access is the reserved value variable for sessions, or i need to assing the value to this variable.

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.