mirror of https://github.com/BOINC/boinc.git
34 lines
617 B
PHP
34 lines
617 B
PHP
|
<?php
|
||
|
|
||
|
require_once("../inc/profile.inc");
|
||
|
|
||
|
db_init();
|
||
|
|
||
|
$userid = $_GET['userid'];
|
||
|
$vote = $_GET['vote'];
|
||
|
|
||
|
if ($vote != "recommend" && $vote != "reject") {
|
||
|
echo "Invalid vote type.<br>";
|
||
|
exit();
|
||
|
}
|
||
|
|
||
|
mysql_query("UPDATE profile SET $vote=$vote+1 WHERE userid = $userid");
|
||
|
|
||
|
page_head("Vote Recorded");
|
||
|
|
||
|
start_table_noborder();
|
||
|
|
||
|
row1("Thank you");
|
||
|
|
||
|
if ($vote == "recommend") {
|
||
|
rowify("Your recommendation has been recorded.");
|
||
|
} else {
|
||
|
rowify("Your vote to reject has been recorded.");
|
||
|
}
|
||
|
end_table();
|
||
|
echo "<br><a href=\"view_profile.php?userid=", $userid ,"\">Return to profile.</a>";
|
||
|
|
||
|
page_tail();
|
||
|
|
||
|
?>
|