Please do not use html code only keep php tags whatever i have given below.
Also there is one error in line $row=$mysql_fetch_array($result);
remove $ sign from the begining of mysql_fetch_array
so correct line is
$row=mysql_fetch_array($result);
following code is correct code
<?php
include("config.php");
$result=mysql_query("select SiteID,MFR from eims_info where SiteID='{$_REQUEST['course']}'");
$row=mysql_fetch_array($result);
echo $row['MFR']; //return mf value for requested code;
?>
REMOVE ALL HTML CODE your script should return only value of mf