Your reserved works:

WorkTime'; while($row=mysql_fetch_array($result)){ $other_query="select workNumber,bTime from works where workID='$row[0]'"; $other_result=mysql_query($other_query) or die ("Action unsuccessful!"); $other_row=mysql_fetch_array($other_result); $third_query="select workdescription from workTopics where workNumber='$other_row[0]'"; $third_result=mysql_query($third_query) or die ("Action unsuccessful!"); $third_row=mysql_fetch_array($third_result); $time=getClearTime($other_row[1]); echo "Work$other_row[0] - $third_row[0]$time"; } echo ''; mysql_close($work_link); ?>