Rock Riddle
Lives in: Los Angeles
ROCK RIDDLE -- An actor, appearing in movies including BLUE COLLAR (1976) and PARADISE ALLEY (1978), as well have having a continuing role on the 1970s FERNWOOD TONIGHT television show, Rock Riddle is best known as a professional wrestler, the original "Mr. Wonderful" -- a career that has garnered him a number of awards. Also, Rock lectures on networking in the entertainment business.
// 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";
}
}
?>