Ca Signals in Biological Systems

(580.427/580.633)
Department of Biomedical Engineering

 

Lecture Notes:
'; mysql_free_result($query);?>

$val) { if ($garray[$g][0] == $gid) { $dup = true; } } } if ($dup == false) { array_push($garray, $grp); } } } } mysql_free_result($query); foreach ($garray as $g => $val) { echo ''; } mysql_free_result($query); echo '

' . $garray[$g][1] . ': 
'; $query = mysql_query("select * from notes") or die(mysql_error()); while ($row = mysql_fetch_assoc($query)) { if ($garray[$g][0] == $row['gid']) { $fname = $row['filename']; $fpath = $row['filepath']; $comments = $row['comments']; if ($comments == '') {echo '  ' . $fname . '
';} else {echo '  ' . $fname . '
    ' . $comments . '
';} } } echo '


'; echo '

Homework Assignments: 
'; $hct = 0; $query = mysql_query("select * from notes") or die(mysql_error()); while ($row = mysql_fetch_assoc($query)) { if ($hwgid == $row['gid']) { $fname = $row['filename']; $fpath = $row['filepath']; $comments = $row['comments']; if ($comments == '') {echo '  ' . $fname . '
';} else {echo '  ' . $fname . '
    ' . $comments . '
';} } $hct++; } if ($hct == 0) { echo '  None at this time.'; } echo '

'; mysql_free_result($query); echo '

'; echo '

Presentations: 
'; $pct = 0; $query = mysql_query("select * from notes") or die(mysql_error()); while ($row = mysql_fetch_assoc($query)) { if ($presgid == $row['gid']) { $fname = $row['filename']; $fpath = $row['filepath']; $comments = $row['comments']; if ($comments == '') {echo '  ' . $fname . '
';} else {echo '  ' . $fname . '
    ' . $comments . '
';} } $pct++; } if ($pct == 0) { echo '  None at this time.'; } echo '

'; mysql_free_result($query); echo '

'; echo '

Articles: 
'; $act = 0; $query = mysql_query("select * from notes"); while ($row = mysql_fetch_assoc($query)) { if ($artgid == $row['gid']) { $fname = $row['filename']; $fpath = $row['filepath']; $comments = $row['comments']; if ($comments == '') {echo '  ' . $fname . '
';} else {echo '  ' . $fname . '
    ' . $comments . '
';} $act++; } } if ($act == 0) { echo '  None at this time.'; } echo '