Topic: Shoutbox reading
I have a simple shoutbox system and I can read the shouts, but my problem is I can not read the shouts of my friends?
// this is our SQL string to insert shouts into db
$sql = "INSERT INTO shouts SET post='$post', ipaddress='$ipaddress', member_id='$member_id'";
// now we retrieve the 8 latest shouts from the db
$query = "SELECT * FROM shouts WHERE member_id='" . $SESSION->conf['member_id'] . "' ORDER BY `id` DESC LIMIT 8;";
how can I read the shouts of my friends? any idea?