boinc/html/user/edit_user_info_action.php

32 lines
820 B
PHP
Raw Normal View History

<?php
require_once("../inc/db.inc");
require_once("../inc/user.inc");
require_once("../inc/util.inc");
require_once("../inc/countries.inc");
db_init();
$user = get_logged_in_user();
$name = process_user_text(post_str("user_name"));
$name = strip_tags($name);
$url = process_user_text(post_str("url"));
$url = strip_tags($url);
$country = post_str("country");
if (!is_valid_country($country)) {
error_page("bad country");
}
$postal_code = process_user_text(post_str("postal_code"));
$postal_code = strip_tags($postal_code);
$result = mysql_query("update user set name='$name', url='$url', country='$country', postal_code='$postal_code' where id=$user->id");
if ($result) {
Header("Location: home.php");
} else {
page_head("User info update");
echo "Couldn't update user info.";
page_tail();
}
?>