. *! *! It means that the program's users have the four essential freedoms: *! *! * The freedom to run the program, for any purpose (freedom 0). *! * The freedom to study how the program works, and change it to make it do what you wish (freedom 1). *! Access to the source code is a precondition for this. *! * The freedom to redistribute copies so you can help your neighbor (freedom 2). *! * The freedom to distribute copies of your modified versions to others (freedom 3). *! *! By doing this you can give the whole community a chance to benefit from your changes. *! Access to the source code is a precondition for this. *! -----------------------------------------------------------------------------** */ require_once("call_filter.php"); $model = $_GET['model']; $rating_file = "models/$model/rating.txt"; if (isset($_GET['rating'])){ $rating = $_GET['rating']; }else{ if (is_file($rating_file)){ echo trim(file_get_contents($rating_file)); }else{ echo "0"; } die(); } if (!preg_match("/\//",$model)){ $result = file_put_contents($rating_file,$rating); if (!$result) { die("-1"); }else{ die("0"); } }else{ die("-2"); } ?>