Прежде, чем выполнить выборку из двух таблиц, выбираю из Табл1 по loc_num нужного пользователя:
<form action="add_statistik.php" method="post">После чего в файле add_statistik.php выполняется код:
<?php
$result = mysql_query("SELECT * FROM `Табл1`");
$myrow = mysql_fetch_assoc($result);
do
{
printf ("<p><input name='loc_num' type='radio' value='%s'><label> <strong> %s</strong></label></p>",$myrow['loc_num'],$myrow['fam']);
}
while ($myrow = mysql_fetch_assoc($result));
?>
<p align="center"><input name="submit" type="submit" loc_num="submit" value="Выбрать"></p>
</form>
$result = mysql_query ("SELECT Табл1.fam, Табл1.avtor_key, statistik.avtor_key, Табл2.cel, Табл2.data2 FROM Табл1,Табл2 WHERE Табл1.avtor_key = Табл2.avtor_key");В результате получаю: