Tom Morga
Lives in: Los Angeles
TOM MORGA -- His true face rarely seen on screen, Tom Morga has appeared in countless motion pictures and television shows, but usually as a stuntman doubling the main actors. Tom is probably best known to his fans for his myriad appearances in the various STAR TREK series. He has also played such celluloid masked serial killers as Jason and Michael Meyers.
// Resume
$resultsMedia = mysql_query("SELECT * FROM ". table_modelagency_client_media ." media WHERE ClientID = \"". $ClientID ."\" AND ClientMediaType = \"Resume\"");
$countMedia = mysql_num_rows($resultsMedia);
if ($countMedia > 0) {
while ($dataMedia = mysql_fetch_array($resultsMedia)) {
echo "\n";
}
}
?>
// tear sheet
$resultsMedia = mysql_query("SELECT * FROM ". table_modelagency_client_media ." media WHERE ClientID = \"". $ClientID ."\" AND ClientMediaType = \"Tear-Sheet\"");
$countMedia = mysql_num_rows($resultsMedia);
if ($countMedia > 0) {
while ($dataMedia = mysql_fetch_array($resultsMedia)) {
echo "\n";
}
}
?>