boinc/html/user/edit_user_info_action.php

35 lines
920 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"));
if ($name != strip_tags($name)) {
error_page("HTML tags not allowed in name");
}
if (strlen($name) == 0) {
error_page("You must supply a name for your account.");
}
$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 {
error_page("Couldn't update user info.");
}
?>