hey,
i looked for any solution in different forums and tutorial but never got what i need....
i understood how to create a join with php and mysql, what i didn't understand is how to get all entries from this select.
a normal select i managed with this syntax:
$query = mysql_query("SELECT alttag FROM $table WHERE ID='$ID'");
$i=0;
while ($this = mysql_fetch_array($query))
{
$alttag[$i]=$this["alttag"];
}
what do i have to write instead the while-statement to get different field values of 2 or more tables??
thanx for help...