Just to inform responders: I look for as many answers as possible through many different locations before posting here...unfortunately coding is a PAI to find solutions for as almost everything overlaps...(ex: How to make a table in php leads to a ton of mysql database tables...etc..) Needless to say I'm only posting here as a last resort...
First Question was in regard to Query issues. Still have a lot of problems with them but I've moved on....(here to acknowledge responses)
Current issues:
$playerinfo="SELECT * from users where username='Vlad'";
I can't for the life of me figure out how to create a username variable without actually entering the name in the blank...
Is login/authenticate/reguser/register/session etc... intended to create the "name" that links to the $username variable...
The Query question doesn't really make sense (though I assume it's written wrong since it obviously doesn't work)
$query = "select username from users where username='username' and password='password'";
For information: My table is users In my table my player reference is username and password is password
Next issue:
echo "<center><table width= '150' cellspacing='5' cellpadding='30' border='10'>";
echo "<tr><td bgcolor=lightblue>".$playerinfo3['username'] . $gold['gold'];
echo "</body></center></table>";
The above code works....it creates a table and shows the players username and gold...unfortunately I couldn't figure out how to space the two of them.
Google mentions \n and I'm aware of   and one page mentioned '<br>' NONE worked...or I inputted them incorrectly which wouldn't be unlikely.
All I want to do is put a stupid SPACE inbetween the two...so I'm sure you understand the frustration when I've fiddled with that line for over an hour.
(though in that time I actually got the variables to work etc...so wasn't all dead time)
Next issue:
With the above issue can someone please explain how a table works in php code...html is a cakewalk. php is a touchmenot...and I can't get a second row going.
If not it's fine I'm considering placing my variables inside an html table anyway. I just hit roadblocks with that originally (not understanding variables and all) so I changed directions and in doing so found a reference to my previous problem which may be a SOLUTION...
I'm posting multiple issues because the response time is rather slow and it's 2am so I doubt I'll have an answer soon. Most likely I'll find my answers before I get a response but that's a win-win anyway
Also still no clue how to get errors to show up other than "error etc in line 25" but I'm getting by anyway. If you can't fix it...pretend it ain't broke.
I do appreciate all help...I understand that everything is on my end and that despite heaps of knowledgeable information I'm still the only one with the wrench in my hand.