http://physics.bgu.ac.il/~dcohen/LINKS/database.html - the original specification
http://www.bgu.ac.il/physics/CourseInfo/CheckNames.php - check what are the available fields
Useful tip, based on
jamit
function window2html($strng)
{
$strng = preg_replace("/([\xE0-\xFA])/e","chr(215).chr(ord(\${1})-80)",$strng);
$strng = preg_replace("/([\\xC0-\\xF7]{1,1}[\\x80-\\xBF]+)/e", 'utf2html("\\1")', $strng);
return $strng;
}
function utf2html ($data)
{
$ret = 0;
foreach ((str_split(strrev(chr((ord($data{0}) % 252 % 248 % 240 % 224 % 192) + 128) . substr($data, 1)))) as $k => $v)
$ret += (ord($v) % 128) * pow(64, $k);
if ($ret<256) return chr($ret); // no need to convert to entities
return "&#$ret;";
}