Register for your free account! | Forgot your password?

Go Back   elitepvpers > Shooter > WarRock > WarRock Guides, Tutorials & Modifications
You last visited: Today at 12:24

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



[RELEASE] WarRock Universe Website

Discussion on [RELEASE] WarRock Universe Website within the WarRock Guides, Tutorials & Modifications forum part of the WarRock category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Dec 2012
Posts: 255
Received Thanks: 78
[RELEASE] WarRock Universe Website

Have Fun.
#Start Hating kids :-)


Bald kommen mehr.
Attached Files
File Type: zip warrockuniverse.zip (1.45 MB, 246 views)
DarkBrow is offline  
Old 07/08/2015, 15:17   #2
 
vrufullop's Avatar
 
elite*gold: 0
Join Date: Apr 2010
Posts: 87
Received Thanks: 7
This is kinda childish..
Btw whoever coded this is not very good at PHP/SQL.

Oh yea and, this :
PHP Code:
$caratteri_disponibili2 ="1234567890abcdefghijklmnopqrstuvwxyz"
REGEX !
vrufullop is offline  
Old 07/08/2015, 20:19   #3
 
NoVision's Avatar
 
elite*gold: 1
Join Date: Jul 2013
Posts: 343
Received Thanks: 161
Why... just why?
NoVision is offline  
Old 07/08/2015, 21:39   #4
 
Gµstavo's Avatar
 
elite*gold: 0
Join Date: Jul 2015
Posts: 33
Received Thanks: 13
Hello DarkBrow,

Everybody can do this using HTTrack, you didn't got any PHP Sources.
btw your website wrpsp is down since 3 days u don't wanna change ur good vps hoster?
Gµstavo is offline  
Old 07/08/2015, 23:57   #5

 
toxiicdev's Avatar
 
elite*gold: 31
Join Date: Jul 2014
Posts: 660
Received Thanks: 299
Quote:
Originally Posted by vrufullop View Post
This is kinda childish..
Btw whoever coded this is not very good at PHP/SQL.

Oh yea and, this :
PHP Code:
$caratteri_disponibili2 ="1234567890abcdefghijklmnopqrstuvwxyz"
REGEX !
Lol my old friend Giacomo PHP code...this prove their c&p

@GustavoC&P he posted your PHP source btw nice copy & paste :*


$query = mysql_query("SELECT * FROM users WHERE username='$username'");
$count = mysql_num_rows($query);
$equery = mysql_query("SELECT * FROM users WHERE email='$email'");
$ecount = mysql_num_rows($equery);

This is quite dumb, just do $count = mysql_num_rows(mysql_query("SELECT * FROM users WHERE username = '$username' OR email = '$email'"));

Please, close your server now
toxiicdev is offline  
Old 07/09/2015, 00:15   #6

 
Futur94's Avatar
 
elite*gold: 0
Join Date: Aug 2011
Posts: 263
Received Thanks: 177
Quote:
Originally Posted by toxiicdev View Post
Lol my old friend Giacomo PHP code...this prove their c&p

@GustavoC&P he posted your PHP source btw nice copy & paste :*


$query = mysql_query("SELECT * FROM users WHERE username='$username'");
$count = mysql_num_rows($query);
$equery = mysql_query("SELECT * FROM users WHERE email='$email'");
$ecount = mysql_num_rows($equery);

This is quite dumb, just do $count = mysql_num_rows(mysql_query("SELECT * FROM users WHERE username = '$username' OR email = '$email'"));

Please, close your server now

Mysqli:

Code:
$query = mysql_query("SELECT * FROM users WHERE username='$username'");
$count = $query -> num_rows;
Mysql:

Code:
$query = mysql_query("SELECT COUNT(*) FROM users WHERE username='$username'");
$row = mysql_fetch_array($query);
$count = $row[0];
Futur94 is offline  
Old 07/09/2015, 00:16   #7
 
Gµstavo's Avatar
 
elite*gold: 0
Join Date: Jul 2015
Posts: 33
Received Thanks: 13
Hello toxiicdev,

This is not my PHP source. You can't get PHP code with something like HTTrack. He pasted the code in the register.php file.

Please shut up now, thanks :-)
Gµstavo is offline  
Old 07/09/2015, 00:33   #8
 
elite*gold: 0
Join Date: Nov 2014
Posts: 18
Received Thanks: 6
Quote:
Originally Posted by toxiicdev View Post
Lol my old friend Giacomo PHP code...this prove their c&p

@GustavoC&P he posted your PHP source btw nice copy & paste :*


$query = mysql_query("SELECT * FROM users WHERE username='$username'");
$count = mysql_num_rows($query);
$equery = mysql_query("SELECT * FROM users WHERE email='$email'");
$ecount = mysql_num_rows($equery);

This is quite dumb, just do $count = mysql_num_rows(mysql_query("SELECT * FROM users WHERE username = '$username' OR email = '$email'"));

Please, close your server now

pfff haha, he is dumb because use this
Code:
$query = mysql_query("SELECT * FROM users WHERE username='$username'");
count = mysql_num_rows($query);
instant of
Code:
$count = mysql_num_rows(mysql_query("SELECT * FROM users WHERE username = '$username' OR email = '$email'"));
It's just the way you code. The first code is more efficient.

Seriously man, you can't even code a website without SQL leaks, please stfu
Systomar is offline  
Thanks
1 User
Old 07/09/2015, 00:36   #9
 
Singlecore's Avatar
 
elite*gold: 0
Join Date: Sep 2014
Posts: 98
Received Thanks: 80
BTW.
Singlecore is offline  
Old 07/09/2015, 04:09   #10
 
Sleutel's Avatar
 
elite*gold: 0
Join Date: Jul 2010
Posts: 748
Received Thanks: 569
They have invented something, PHP a framework, USE IT.
Sleutel is offline  
Old 07/09/2015, 10:52   #11

 
toxiicdev's Avatar
 
elite*gold: 31
Join Date: Jul 2014
Posts: 660
Received Thanks: 299
Quote:
Originally Posted by Systomar View Post
pfff haha, he is dumb because use this
Code:
$query = mysql_query("SELECT * FROM users WHERE username='$username'");
count = mysql_num_rows($query);
instant of
Code:
$count = mysql_num_rows(mysql_query("SELECT * FROM users WHERE username = '$username' OR email = '$email'"));
It's just the way you code. The first code is more efficient.

Seriously man, you can't even code a website without SQL leaks, please stfu
Instant of..yea��

his one isn't efficient its executing and counting rows 2 more time, plus you are dumb because there are no SQL Leaks, please **** off, thanks
toxiicdev is offline  
Old 07/09/2015, 12:01   #12
 
vrufullop's Avatar
 
elite*gold: 0
Join Date: Apr 2010
Posts: 87
Received Thanks: 7
Gµstavo says it's not his code, topic can be closed.
vrufullop is offline  
Old 07/13/2015, 05:50   #13
 
elite*gold: 0
Join Date: Jul 2013
Posts: 274
Received Thanks: 186
Quote:
Originally Posted by Sleutel View Post
They have invented something, PHP a framework, USE IT.
frameworkz only for low-programmers. real coders do it the old 2004 way!

[/sarcasm]
wa-sta is offline  
Thanks
2 Users
Reply


Similar Threads Similar Threads
[24/7 | Chapter 3] WarRock Universe Private Server
08/04/2015 - WarRock - 179 Replies
http://i.imgur.com/9QJSHYw.png



All times are GMT +1. The time now is 12:24.


Powered by vBulletin®
Copyright ©2000 - 2025, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2025 elitepvpers All Rights Reserved.