forked from SynapseTechnologies/BuckysRoom
-
Notifications
You must be signed in to change notification settings - Fork 0
/
info_basic.php
executable file
·55 lines (44 loc) · 1.33 KB
/
info_basic.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
require(dirname(__FILE__) . '/includes/bootstrap.php');
//If the user is not logged in, redirect to the index page
if( !($userID = buckys_is_logged_in()) )
{
buckys_redirect('/index.php');
}
//Getting UserData from Id
$userData = BuckysUser::getUserBasicInfo($userID);
//Goto Homepage if the userID is not correct
if( !buckys_not_null($userData) )
{
buckys_redirect('/index.php');
}
if( isset($_POST['action']) && $_POST['action'] == 'save_basic_info' )
{
//Check the user id is same with the current logged user id
if($_POST['userID'] != $userID)
{
echo 'Invalid Request!';
exit;
}
//Check first name and last name
if( trim($_POST['firstName']) == '' || trim($_POST['lastName']) == '' )
{
echo MSG_USERNAME_EMPTY_ERROR;
exit;
}
if( BuckysUser::saveUserBasicInfo($userID, $_POST) )
{
echo 'Success';
exit;
}else{
echo $db->last_query;
echo $db->getLastError();
exit;
}
}
buckys_enqueue_stylesheet('account.css');
buckys_enqueue_stylesheet('info.css');
buckys_enqueue_javascript('info.js');
$BUCKYS_GLOBALS['content'] = 'info_basic';
$BUCKYS_GLOBALS['title'] = "Basic Info - BuckysRoom";
require(DIR_FS_TEMPLATE . $BUCKYS_GLOBALS['template'] . "/" . $BUCKYS_GLOBALS['layout'] . ".php");