I have 2 tables. First has and ID and a Purpose. The other one contais rel_id and member_id. I need to go through rel_id array which matches the user_id that I have stored in session variable. Then rel_id corresponds to first tables ID and prints out Purpose. It may sound confusing but that's the way I figured out to do my task. The way I'm doing this might clear the confusion.
Kullanıcı yapmam kullanmakta olduğu tüm rel_id bulunuyor almak için:
$result = mysql_query("SELECT rel_id FROM $tbl_pask_rel WHERE member_id='$_SESSION[id]'")
or die(mysql_error());
$row = mysql_fetch_array($result);
Kullandığım ilk tablodan Amaçları almak için:
$query="SELECT pask, id FROM $tbl_name WHERE '$row[rel_id]'=id";
$result = mysql_query ($query);
Ben listede aşağı bir damla sonuçlarını görüntülemek istiyorum ama sadece İLK eşleşti Amaç alır ve görüntüler. Gerisi Görüntülenen öyle yüzden benim $ row [rel_id] ilk aldım sadece 1 değerini içerir varsayalım. Ben tüm dizi geçmesi ve bunu göstermek istiyorum. Herhangi bir fikir kadar appriciated! :)
Regards, Skittles