FLASHfreak1021
Programmer
Hey!
I have a site, in which I have a login. When you press the login button, it runs a PHP MySQL query. But I can't figure out how to select multiple fields at the end. Here, i will give you an example:
I want to turn that into something like this:
&
Any help will be appreciated.
FLASHfreak
I have a site, in which I have a login. When you press the login button, it runs a PHP MySQL query. But I can't figure out how to select multiple fields at the end. Here, i will give you an example:
Code:
$query = "SELECT * FROM $table WHERE Name = '$Name'";
I want to turn that into something like this:
Code:
$query = "SELECT * FROM $table WHERE Name = '$Name'
Code:
Password = '$password'";
Any help will be appreciated.
FLASHfreak