"ex: if lisa login, only data lisa display"
Use this for your mysql command:
$inquiry = mysql_query("SELECT * FROM table_name WHERE user='Lisa'", $db);
Then to use the info using php:
$a = mysql_fetch_array($inquiry);
$name = $a[name];
$password = $a[password];
$info = $a[info];
That's pretty standard stuff there. You have to modify depending on the field names in your tables, your table names and the database name.