Philip Paley
Lives in: Los Angeles
PHILIP PALEY -- Philip is best known to his fans for his role of Cha-Ka, the friendly little "Pacuni" (a race of ape-like, not-quite-human characters) on the beloved mid-1970s TV series LAND OF THE LOST. He also appeared on other television shows, including AIRWOLF (1985), in which he played Ernie Wolfe. (See also celebrities Kathy Coleman and Wesley Eure.)
// 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";
}
}
?>