Ian Whitcomb
Lives in: Los Angeles
IAN WHITCOMB is mult-talented -- composer, singer, musician, record producer, book author and actor. He was part of the 1960's musical "British Invasion" and is probably best known to fans for his hit single "You Turn Me On," which placed number 8 on "Billboard's" Hot 100 chart in 1965. Ian's recreation of music played aboard the "RMS Titanic" in the blockbuster movie won a 1998 Grammy Award for package design and a nomination for his liner notes ("Titanic: Music as Heard on the Fateful Voyage"). Moreover, Ian Whitcomb is a great promoter (and player) of the ukulele.
// 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";
}
}
?>