hi,
I have this SQL query:
$recordSet = $db->Execute("SELECT * FROM customer WHERE Member_ID='$appUsername' AND Cust_ID='$appPassword'");
Is ther anyway in which i can display all the records which have been retrieved.
eg.
member_id , cust_id, name
1 1 2
(only the fields are to be viewed)
One will be retrieved is the password and user name are correct - im just trying to try eliminate all problems which there could be with my login script
Thanks