Auto Registration ?
ZiNgA BuRgA Offline
Fag
*******
Posts: 3,357
Joined: Jan 2008
Post: #8
RE: Auto Registration ?
You can't use the above code directly for what you're trying to do (unless you're trying to completely replicate the AdminCP interface or similar).  It's up to you to adapt it to your needs, I'm not going to do that for you.  I don't code plugin requests, neither do I code plugins or most of a plugin for someone.  I'm willing to give advice, explain concepts, or find faults, but I'm generally not going to actually do any coding work (beyond demonstrating principles).
If you're struggling to understand such a piece of code, I strongly suggest trying to understand PHP more thoroughly.  Otherwise, you're just going to keep having issues, and you're going to keep asking, and it's not going to be beneficial to anyone.


Randomly selecting a name is easy if you don't mind it being truly random (ie, possible for the same name to be picked more than once).

PHP Code:
$selected_element =& $my_array[mt_rand(0, count($my_array)-1)];

If you want random elements to be never be picked twice, across multiple calls, you'll need some persistence, such as storing the array somewhere and removing chosen elements when you pick them.

You could set up an array of arrays containing the user data you want, then your code will pick one of these arrays, and send it directly to the userhandler.  This is probably one of the easier aspects for MyBB as well...

Hope that helps.


My Blog
(This post was last modified: 08-17-2010 07:00 PM by ZiNgA BuRgA.)
08-17-2010 07:00 PM
Find all posts by this user Quote this message in a reply

« Next Oldest | Next Newest »

Messages In This Thread
Auto Registration ? - Imran - 08-16-2010, 06:30 AM
RE: Auto Registration ? - ZiNgA BuRgA - 08-16-2010, 08:12 AM
RE: Auto Registration ? - Imran - 08-17-2010, 01:24 AM
RE: Auto Registration ? - ZiNgA BuRgA - 08-17-2010, 07:11 AM
RE: Auto Registration ? - Imran - 08-17-2010, 10:12 AM
RE: Auto Registration ? - ZiNgA BuRgA - 08-17-2010, 01:45 PM
RE: Auto Registration ? - Imran - 08-17-2010, 05:25 PM
RE: Auto Registration ? - ZiNgA BuRgA - 08-17-2010 07:00 PM

 Standard Tools
Forum Jump: