Brinke Stevens
Perform: Yes
Meet & Greet: Yes
Lives in: Los Angeles
BRINKE STEVENS -- One of the most popular and best-known "scream queens" of all time, Brinke Stevens has appeared (many times in starring roles) in virtually countless movies, most of them horror. Her credits include BLOOD SCARAB (2008), BLOOD SIBLINGS (2009), THE SUMMER OF MASSACRE (2012) and way too many others to list here.
// 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";
}
}
?>