Ron Ely
Lives in: Los Angeles
RON ELY -- Ron Ely has either starred in or played major roles in countless television shows and motion pictures. He is best remembered, however, as playing Edgar Rice Burroughs' "Lord of the Jungle" in the 1966 TARZAN TV series and "Man of Bronze" DOC SAVAGE in George Pal's movie of that title.
// 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";
}
}
?>