hash1 Posted March 14, 2010 Share Posted March 14, 2010 Hello, im wanting to create some sort of invite code script where I can generate a handful of active codes and then give them out so that who ever receives them can use them to sign up at my website. Does any one know how I would go about doing this? Im absolutely clueless. Link to comment https://forums.phpfreaks.com/topic/195215-integrate-simple-invite-code-script/ Share on other sites More sharing options...
slurpee Posted March 14, 2010 Share Posted March 14, 2010 Something like this? $confCodes = array(); $codeLength = 10; $numCodes = 100; for($i=0; $i < $numCodes; $i++) { $confCodes[] = substr(md5(rand()),0,$codeLength); } Link to comment https://forums.phpfreaks.com/topic/195215-integrate-simple-invite-code-script/#findComment-1026008 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.