mysql - PHP one time expire link -
mysql - PHP one time expire link -
i want url www.something.com/somenumber/index.html
example www.google.com/101521145/index.html
means want random number before required page
is possible using php , sql
if randomness need :
<?php $time = round( microtime( true ) * 1000 ); //microtime returns current microseconds of server echo $time; ?>
php mysql sql
Comments
Post a Comment