Im tring to create a script.. that once a minute has passed then.. show a message.. for example
session_start( );
session_register( "current" );
$current = date( "i",time( )+60 );
if( $current == date( "i")){
print "One minute has pasted";
session_destroy( );
}else{
print "errr wait for the minute to pass pleace ";
print $current ." ";
}
See if the user wants to access the script.. then wait one minute before you can access it.. or.. if the user already have accessed the script.. then wait 2 more minutes how can i code this
PS
i posted this else were but.. im working on learning these function and i want to understand it