PDA

View Full Version : is this possible??


squawell
12-27-2001, 04:13 AM
i have a question !!

for example:

if i only want my forum registed 300 members!!

have any way can auto stop registe when the forum have 300

members~~

is this possible??

nuno
12-27-2001, 12:38 PM
yup
edit register.php
find
if ($url==$HTTP_REFERER) {
$url=urlencode($url);
}

paste this under it
$numbersmembers=$DB_site->query_first('SELECT COUNT(*) AS users,MAX(userid) AS max FROM user');

find:
if ($action=="signup") {

if (!$allowregistration) {

replace it with
if ($action=="signup") {

if (!$allowregistration OR $numbersmembers >= 300) {

:rolleyes:

squawell
12-28-2001, 03:38 AM
thankz nuno~~~~

u give me a big help~~~~:D:D