Epihedron / Adventurer

Adventurer webpage and assests
epihedron.com
3 stars 0 forks source link

select a character doesn't work properly #13

Closed 13ruce1337 closed 10 years ago

13ruce1337 commented 10 years ago

for some reason the select a character page queries for every character in the database but only shows values if the username matches for the character

13ruce1337 commented 10 years ago
$query=mysql_query("select charname from characters where username='admin';");

changed to:

$query=mysql_query("select charname from characters where username='$user';");

lala land