Current Page: 1 of 1
Results 1 - 4 of 4
18 years ago
SkareCrow
sorry, $username = mysql_real_escape_string($_GET['user_name']); shout be $user_name = mysql_real_escape_string($_GET['user_name']);
Forum: WampServer English
18 years ago
SkareCrow
Here is a small peice of code I just made for you. Hope it helps you. <?PHP $host = "localhost"; $user = "root"; $pass = ""; $db = ""; mysql_connect($host, $user, $pass) or die(mysql_error()); mysql_select_db($db) or die(mysql_error()); if (isset($_GET['user_name'])) { $username = mysql_real_escape_string($_GET['user_name']); $query = mysq
Forum: WampServer English
18 years ago
SkareCrow
You do not need to login. By default the mysql root user password is null. Just press <enter> when it asks you for your password and you will login just fine. If you want to set a password you do this... get into mysql console.. type: USE mysql; type: UPDATE user SET Password=PASSWORD('yournewpassword') WHERE User='root'; type: FLUSH PRIVILEGES; now you can logout of mysql and then when y
Forum: WampServer English
18 years ago
SkareCrow
I just wanted to post to let you guys know you guys really helped me out on backdooring my website! You guys really should not have 1 line includes for an alias set up in the httpd.conf file for phpmyadmin and sqlitemanager. With you guys doing this I totally looked over it and people were taking / editing information on my MySQL server... For anyone that runs wamp i greatly encourge you to eaith
Forum: WampServer English
Current Page: 1 of 1