Hello there,
i have a table with 5 fields
i want to associate the primary key field with two of them
while i am trying that
$studTop = array();
while ($row_studTop = mysqli_fetch_assoc($res))
{
$studTop[$row_studTop['top_stud_id']] = $row_studTop['top_id'];
}
i asssociate top_stud_id field with that of top_id
does anybody know how i can associate another field to that....
possible solution $row_studTop['top_id'].$row_studTop['field2']????