<?php

  
/*This program is free software. It comes without any warranty, to  
  * the extent permitted by applicable law. You can redistribute it  
  * and/or modify it under the terms of the Do What The Fuck You Want  
  * To Public License, Version 2, as published by Sam Hocevar. See  
  * http://sam.zoy.org/wtfpl/COPYING for more details. */  
   
     /*DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE  
                     Version 2, December 2004  
   
  Copyright (C) 2004 Sam Hocevar  
   14 rue de Plaisance, 75014 Paris, France  
  Everyone is permitted to copy and distribute verbatim or modified  
  copies of this license document, and changing it is allowed as long  
  as the name is changed.  
   
             DO WHAT THE FUCK YOU WANT TO PUBLIC LICENSE  
    TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION  
        0. You just DO WHAT THE FUCK YOU WANT TO.*/   

//Made by http://sov.localhostz.org. Feel free to report any comments, suggestions or bugs at sov[AT]localhostz[DOT]org






function RandStamp()
{
    
$hour mt_rand(0,23);
    
$minute mt_rand(0,59);
    
$second mt_rand(0,59);

    
$month mt_rand(1,12);
    
$day mt_rand(1,28);
    
$year mt_rand(70,100);

    
$randstamp mktime($hour,$minute,$second,$month,$day,$year);     

    return 
$randstamp;
}



?>