Advertisement
BugAR

test

Jun 27th, 2017
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. <?
  2. /////////////////////////
  3. $char1 = explode(',' , '1,2,3,4,5,6,7,8,9,a,b,c,d,f,g,h,j,k,m,n,p,q,r,s,t,v,w,x,y,z,B,C,D,F,G,H,J,K,L,M,N,P,Q,R,S,T,V,W,X,Y,Z');
  4. $random1 ='';
  5. $random1 .= $char1[rand(0, count($char1))];
  6. /////////
  7. $char2 = explode(',' , '1,2,3,4,5,6,7,8,9,a,b,c,d,f,g,h,j,k,m,n,p,q,r,s,t,v,w,x,y,z,B,C,D,F,G,H,J,K,L,M,N,P,Q,R,S,T,V,W,X,Y,Z');
  8. $random2 ='';
  9. $random2 .= $char2[rand(0, count($char2))];
  10. /////////////////////////
  11. print "$random1$random2";
  12. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement