Account Made

11/02/2010 21:49 [SA]Darkness#1
Anyone know the script for how many accounts made?
11/03/2010 06:18 Daunenjacke#2
PHP Code:
<?php
mysql_connect
("host","usr","pass")
$exec mysql_num_rows(mysql_query("SELECT id from account.account")));
echo 
"There are ".$exec." Accounts!";
?>
11/03/2010 08:16 alg0r!thm#3
Sorry..
I dont understand your Question..
What you search a PHP Script to made a Account ?
Than look to the Post from "Daunenjacke".
But when it a other Problem then you can send a "pm" to me.



Greetz
11/03/2010 17:42 [SA]Darkness#4
Parse error: syntax error, unexpected ')' in C:\xampp\htdocs\player_online.php on line 28

line 28

PHP Code:
$exec mysql_num_rows(mysql_query("SELECT id from account.account"))); 
11/03/2010 19:30 [SA]Darkness#5
Fixed it

PHP Code:
<?php
mysql_connect
("0.0.0.0","user","password");
$exec mysql_num_rows (mysql_query("SELECT id from account.account;"));
echo 
"There are ".$exec." Accounts!";
?>
11/03/2010 19:55 int.#6
Quote:
Originally Posted by xPhinix View Post
Sorry..
I dont understand your Question..
What you search a PHP Script to made a Account ?
Than look to the Post from "Daunenjacke".
But when it a other Problem then you can send a "pm" to me.



Greetz
Er sucht nach einem Script das ihm verrät, wieviele registrierte Accounts erstellt wurden.

Und Dauni hat genau das geposted.