Hi,
I am developing in PHP using a MySql Database. in the database I may have the same user that has three seperate transactions. each transaction has a different price. I want to ba able to look at a user and pick the highest price of that user from the database.
Below is an example of what I mean.
John|Smith|$12.00
John|Smith|$15.00
John|Smith|$9.00
I want to be able to get the value $15.00 from PHP and make that a variable. Can you tell me how to write that? _ already know how to connect to the database, just need to know how to write that.
Thanks